]> git.ipfire.org Git - thirdparty/git.git/blobdiff - t/t5607-clone-bundle.sh
Merge branch 'js/range-diff-wo-dotdot'
[thirdparty/git.git] / t / t5607-clone-bundle.sh
index 5b39f4a2880d43f57d142a61f076968add9d3095..f4c383cd5ce770aeafb874a48748445a8bec247a 100755 (executable)
@@ -41,13 +41,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 main | git bundle create stdin-bundle.bdl --stdin &&
        git ls-remote stdin-bundle.bdl >output &&
        grep main output
 '
 
-test_expect_failure 'bundle --stdin <rev-list options>' '
+test_expect_success 'bundle --stdin <rev-list options>' '
        echo main | git bundle create hybrid-bundle.bdl --stdin tag &&
        git ls-remote hybrid-bundle.bdl >output &&
        grep main output