]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t5574-fetch-output.sh
Merge branch 'rs/parse-options-with-keep-unknown-abbrev-fix'
[thirdparty/git.git] / t / t5574-fetch-output.sh
index b579364c4782bc2bf95d60a5cc244a4e6466667a..5883839a04e991d6ab93a965698662ced064fe3d 100755 (executable)
@@ -90,7 +90,7 @@ test_expect_success 'setup for fetch porcelain output' '
 
 for opt in "" "--atomic"
 do
-       test_expect_failure "fetch porcelain output ${opt:+(atomic)}" '
+       test_expect_success "fetch porcelain output ${opt:+(atomic)}" '
                test_when_finished "rm -rf porcelain" &&
 
                # Clone and pre-seed the repositories. We fetch references into two
@@ -292,12 +292,12 @@ test_expect_success '--no-show-forced-updates' '
        (
                cd forced-update-clone &&
                git fetch --show-forced-updates origin 2>output &&
-               test_i18ngrep "(forced update)" output
+               test_grep "(forced update)" output
        ) &&
        (
                cd no-forced-update-clone &&
                git fetch --no-show-forced-updates origin 2>output &&
-               test_i18ngrep ! "(forced update)" output
+               test_grep ! "(forced update)" output
        )
 '