diff options
author | Denton Liu <liu.denton@gmail.com> | 2021-05-12 13:16:12 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-05-13 08:48:16 +0900 |
commit | aa2b05d9f66f5c167a7a377e2a0990f4af835e71 (patch) | |
tree | 6d3a1a67f4f786d5952554b539c21244efa98201 /t | |
parent | stash show: learn stash.showIncludeUntracked (diff) | |
download | tgif-aa2b05d9f66f5c167a7a377e2a0990f4af835e71.tar.xz |
t3905: correct test title
We reference the non-existent option `git stash show --show-untracked`
when we really meant `--only-untracked`. Correct the test title
accordingly.
Signed-off-by: Denton Liu <liu.denton@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t3905-stash-include-untracked.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t3905-stash-include-untracked.sh b/t/t3905-stash-include-untracked.sh index b470db7ef7..2e6796725b 100755 --- a/t/t3905-stash-include-untracked.sh +++ b/t/t3905-stash-include-untracked.sh @@ -367,7 +367,7 @@ test_expect_success 'stash show --only-untracked only shows untracked files' ' test_cmp expect actual ' -test_expect_success 'stash show --no-include-untracked cancels --{include,show}-untracked' ' +test_expect_success 'stash show --no-include-untracked cancels --{include,only}-untracked' ' git reset --hard && git clean -xf && >untracked && |