]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t7105-reset-patch.sh
tests: teach callers of test_i18ngrep to use test_grep
[thirdparty/git.git] / t / t7105-reset-patch.sh
index 9b46da7aaa7e59c08bf799262a21056fe7417d86..05079c7246482cb5a50bf1579914ef810e309cd7 100755 (executable)
@@ -30,21 +30,21 @@ test_expect_success PERL 'git reset -p' '
        test_write_lines n y | git reset -p >output &&
        verify_state dir/foo work head &&
        verify_saved_state bar &&
-       test_i18ngrep "Unstage" output
+       test_grep "Unstage" output
 '
 
 test_expect_success PERL 'git reset -p HEAD^' '
        test_write_lines n y | git reset -p HEAD^ >output &&
        verify_state dir/foo work parent &&
        verify_saved_state bar &&
-       test_i18ngrep "Apply" output
+       test_grep "Apply" output
 '
 
 test_expect_success PERL 'git reset -p HEAD^^{tree}' '
        test_write_lines n y | git reset -p HEAD^^{tree} >output &&
        verify_state dir/foo work parent &&
        verify_saved_state bar &&
-       test_i18ngrep "Apply" output
+       test_grep "Apply" output
 '
 
 test_expect_success PERL 'git reset -p HEAD^:dir/foo (blob fails)' '