diff options
author | SZEDER Gábor <szeder@ira.uka.de> | 2013-06-30 12:45:25 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-06-30 12:31:26 -0700 |
commit | 5155c7f37a7422cd14884ee9a7e8e2a79508aea2 (patch) | |
tree | be72b2c4ca16bf5fe43ccfcf9e2251ac54fffb20 /t/t7011-skip-worktree-reading.sh | |
parent | 3a461832c5ca4f140e41fdc34f86c90868aea33b (diff) | |
download | git-5155c7f37a7422cd14884ee9a7e8e2a79508aea2.tar.gz git-5155c7f37a7422cd14884ee9a7e8e2a79508aea2.tar.xz |
test: spell 'ls-files --delete' option correctly in test descriptions
The option is spelled '--deleted'.
Signed-off-by: SZEDER Gábor <szeder@ira.uka.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7011-skip-worktree-reading.sh')
-rwxr-xr-x | t/t7011-skip-worktree-reading.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t7011-skip-worktree-reading.sh b/t/t7011-skip-worktree-reading.sh index 8f3b54d82..88d60c1ce 100755 --- a/t/t7011-skip-worktree-reading.sh +++ b/t/t7011-skip-worktree-reading.sh @@ -91,12 +91,12 @@ test_expect_success 'update-index --remove' ' test_cmp expected 1 ' -test_expect_success 'ls-files --delete' ' +test_expect_success 'ls-files --deleted' ' setup_absent && test -z "$(git ls-files -d)" ' -test_expect_success 'ls-files --delete' ' +test_expect_success 'ls-files --deleted' ' setup_dirty && test -z "$(git ls-files -d)" ' |