diff options
author | Kaartic Sivaraam <kaartic.sivaraam@gmail.com> | 2018-03-10 21:24:16 +0530 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-03-15 13:34:40 -0700 |
commit | 40c17eb18494d20d6ffaa4f1b2237824a1cb52a6 (patch) | |
tree | bc689875fe90067c4b818a37993b9fbccfba186d | |
parent | 52d59cc6452ed1aeec91f4c168a853ea8d9d5496 (diff) | |
download | git-40c17eb18494d20d6ffaa4f1b2237824a1cb52a6.tar.gz |
t/t3200: fix a typo in a test descriptionks/t3200-typofix
Signed-off-by: Kaartic Sivaraam <kaartic.sivaraam@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t3200-branch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t3200-branch.sh b/t/t3200-branch.sh index 5d03ad16f6..e6b9a210d2 100755 --- a/t/t3200-branch.sh +++ b/t/t3200-branch.sh @@ -478,7 +478,7 @@ test_expect_success 'git branch -c -f o/q o/p should work when o/p exists' ' git branch -c -f o/q o/p ' -test_expect_success 'git branch -c qq rr/qq should fail when r exists' ' +test_expect_success 'git branch -c qq rr/qq should fail when rr exists' ' git branch qq && git branch rr && test_must_fail git branch -c qq rr/qq |