]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t5607-clone-bundle.sh
bundle: arguments can be read from stdin
[thirdparty/git.git] / t / t5607-clone-bundle.sh
index 26985f4b44945f6680bfe2f65fb23d2c89407b6c..425258767d43424b94050d81c674023377b7044a 100755 (executable)
@@ -38,13 +38,13 @@ test_expect_success 'die if bundle file cannot be created' '
        test_must_fail git bundle create adir --all
 '
 
-test_expect_failure 'bundle --stdin' '
+test_expect_success 'bundle --stdin' '
        echo master | git bundle create stdin-bundle.bdl --stdin &&
        git ls-remote stdin-bundle.bdl >output &&
        grep master output
 '
 
-test_expect_failure 'bundle --stdin <rev-list options>' '
+test_expect_success 'bundle --stdin <rev-list options>' '
        echo master | git bundle create hybrid-bundle.bdl --stdin tag &&
        git ls-remote hybrid-bundle.bdl >output &&
        grep master output