]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t5300-pack-object.sh
tests: teach callers of test_i18ngrep to use test_grep
[thirdparty/git.git] / t / t5300-pack-object.sh
index 745089479ca3a87e36239e196466aadb0b886848..d402ec18b795c7ab5bc1b53d5eaaa4467e37fdbb 100755 (executable)
@@ -541,7 +541,7 @@ test_expect_success 'make sure index-pack detects the SHA1 collision' '
        (
                cd corrupt &&
                test_must_fail git index-pack -o ../bad.idx ../test-3.pack 2>msg &&
-               test_i18ngrep "SHA1 COLLISION FOUND" msg
+               test_grep "SHA1 COLLISION FOUND" msg
        )
 '
 
@@ -549,7 +549,7 @@ test_expect_success 'make sure index-pack detects the SHA1 collision (large blob
        (
                cd corrupt &&
                test_must_fail git -c core.bigfilethreshold=1 index-pack -o ../bad.idx ../test-3.pack 2>msg &&
-               test_i18ngrep "SHA1 COLLISION FOUND" msg
+               test_grep "SHA1 COLLISION FOUND" msg
        )
 '