]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t6001-rev-list-graft.sh
tests: teach callers of test_i18ngrep to use test_grep
[thirdparty/git.git] / t / t6001-rev-list-graft.sh
index 16635ecc33e5e67ab56985a5e4a071492ed22cc9..73a2465aa0eca662e69f1efd49f285786f5bd9c1 100755 (executable)
@@ -118,10 +118,10 @@ done
 
 test_expect_success 'show advice that grafts are deprecated' '
        git show HEAD 2>err &&
-       test_i18ngrep "git replace" err &&
+       test_grep "git replace" err &&
        test_config advice.graftFileDeprecated false &&
        git show HEAD 2>err &&
-       test_i18ngrep ! "git replace" err
+       test_grep ! "git replace" err
 '
 
 test_done