Merge branch 'jn/branch-move-to-self'
[gitweb.git] / t / t5800-remote-helpers.sh
index 9db8ca884e4044411b8f37136118f265a6c517d6..1c62001fce76a73cc951dd18bcf6cb6f650f69e8 100755 (executable)
@@ -85,7 +85,7 @@ test_expect_success 'pushing remote local repo' '
        compare_refs clone HEAD server HEAD
 '
 
-test_expect_failure 'fetch new branch' '
+test_expect_success 'fetch new branch' '
        (cd public &&
         git checkout -b new &&
         echo content >>file &&
@@ -98,7 +98,7 @@ test_expect_failure 'fetch new branch' '
        compare_refs public HEAD localclone FETCH_HEAD
 '
 
-test_expect_failure 'fetch multiple branches' '
+test_expect_success 'fetch multiple branches' '
        (cd localclone &&
         git fetch
        ) &&
@@ -106,7 +106,7 @@ test_expect_failure 'fetch multiple branches' '
        compare_refs server new localclone refs/remotes/origin/new
 '
 
-test_expect_failure 'push when remote has extra refs' '
+test_expect_success 'push when remote has extra refs' '
        (cd clone &&
         echo content >>file &&
         git commit -a -m six &&
@@ -115,7 +115,7 @@ test_expect_failure 'push when remote has extra refs' '
        compare_refs clone master server master
 '
 
-test_expect_failure 'push new branch by name' '
+test_expect_success 'push new branch by name' '
        (cd clone &&
         git checkout -b new-name  &&
         echo content >>file &&