Code

Merge branch 'js/forkexec'
[git.git] / t / t5600-clone-fail-cleanup.sh
index 1913a12d717fbf7362357e6e07254c364bb3e912..1776b377f3c787977b145980f05aa74da5038657 100755 (executable)
@@ -13,7 +13,7 @@ remove the directory before attempting a clone again.'
 
 test_expect_failure \
     'clone of non-existent source should fail' \
-    'git_clone foo bar'
+    'git-clone foo bar'
 
 test_expect_failure \
     'failed clone should not leave a directory' \
@@ -29,14 +29,14 @@ test_create_repo foo
 # current path not to the target dir
 test_expect_failure \
     'clone of non-existent (relative to $PWD) source should fail' \
-    'git_clone ../foo baz'
+    'git-clone ../foo baz'
 
 test_expect_success \
     'clone should work now that source exists' \
-    'git_clone foo bar'
+    'git-clone foo bar'
 
 test_expect_success \
-    'successfull clone must leave the directory' \
+    'successful clone must leave the directory' \
     'cd bar'
 
 test_done