]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t: fix typo in test descriptions
authorNathan Stocks <cleancut@github.com>
Wed, 6 Nov 2019 04:18:09 +0000 (04:18 +0000)
committerJunio C Hamano <gitster@pobox.com>
Thu, 7 Nov 2019 05:47:29 +0000 (14:47 +0900)
Fix two test descriptions which stated "git -ls-files" when the actual
command being tested was "git ls-files".

Signed-off-by: Nathan Stocks <cleancut@github.com>
Reviewed-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t3060-ls-files-with-tree.sh

index 44f378ce41d2f6a151b04759e930ef8f09242343..52ed665fcd2dd7fbcbfbb77be4272b26f81c4f1f 100755 (executable)
@@ -47,7 +47,7 @@ test_expect_success setup '
        git add .
 '
 
-test_expect_success 'git -ls-files --with-tree should succeed from subdir' '
+test_expect_success 'git ls-files --with-tree should succeed from subdir' '
        # We have to run from a sub-directory to trigger prune_path
        # Then we finally get to run our --with-tree test
        (
@@ -57,7 +57,7 @@ test_expect_success 'git -ls-files --with-tree should succeed from subdir' '
 '
 
 test_expect_success \
-    'git -ls-files --with-tree should add entries from named tree.' \
+    'git ls-files --with-tree should add entries from named tree.' \
     'test_cmp expected output'
 
 test_done