diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2020-11-03 11:48:07 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-11-03 12:15:55 -0800 |
commit | 8d8893112352dca87cdb63393403ea0014cad821 (patch) | |
tree | cc66038f1008e11d90ccdd71361b5e73c4fcbe32 | |
parent | worktree: teach `list` to annotate locked worktree (diff) | |
download | tgif-8d8893112352dca87cdb63393403ea0014cad821.tar.xz |
t2402: fix typo
In c57b3367bed (worktree: teach `list` to annotate locked worktree,
2020-10-11), we introduced a test case that wanted to talk about
"worktrees" but talked about "worktress" instead. Let's fix that.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t2402-worktree-list.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t2402-worktree-list.sh b/t/t2402-worktree-list.sh index b85bd2655d..795ddca2e4 100755 --- a/t/t2402-worktree-list.sh +++ b/t/t2402-worktree-list.sh @@ -61,7 +61,7 @@ test_expect_success '"list" all worktrees --porcelain' ' test_cmp expect actual ' -test_expect_success '"list" all worktress with locked annotation' ' +test_expect_success '"list" all worktrees with locked annotation' ' test_when_finished "rm -rf locked unlocked out && git worktree prune" && git worktree add --detach locked master && git worktree add --detach unlocked master && |