Merge branch 'ps/contains-id-error-message'
[gitweb.git] / t / t3404-rebase-interactive.sh
index 3b905406df79187f70c828f72e9e2dc187f1be57..c59d0384fd6f797ae30df9c157dbdf4b0307fa02 100755 (executable)
@@ -927,10 +927,8 @@ test_expect_success 'rebase --exec works without -i ' '
 test_expect_success 'rebase -i --exec without <CMD>' '
        git reset --hard execute &&
        set_fake_editor &&
-       test_must_fail git rebase -i --exec 2>tmp &&
-       sed -e "1d" tmp >actual &&
-       test_must_fail git rebase -h >expected &&
-       test_cmp expected actual &&
+       test_must_fail git rebase -i --exec 2>actual &&
+       test_i18ngrep "requires a value" actual &&
        git checkout master
 '