diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-08-13 23:13:39 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-08-13 23:13:39 +0200 |
commit | 0a41a89306b041fa27a8de2b2ffe15029351f542 (patch) | |
tree | 5e4d680b7f3e4a23101249fb5029f00a44cfb8c4 /t/t5510-fetch.sh | |
parent | Merge branch 'jt/has_object' (diff) | |
parent | t4104: modernize and simplify quoting (diff) | |
download | git-0a41a89306b041fa27a8de2b2ffe15029351f542.tar.xz git-0a41a89306b041fa27a8de2b2ffe15029351f542.zip |
Merge branch 'ma/test-quote-cleanup'
Test cleanup.
* ma/test-quote-cleanup:
t4104: modernize and simplify quoting
t: don't spuriously close and reopen quotes
Diffstat (limited to 't/t5510-fetch.sh')
-rwxr-xr-x | t/t5510-fetch.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/t/t5510-fetch.sh b/t/t5510-fetch.sh index e567cba38d..25695dfe22 100755 --- a/t/t5510-fetch.sh +++ b/t/t5510-fetch.sh @@ -213,7 +213,7 @@ test_expect_success 'fetch tags when there is no tags' ' test_expect_success 'fetch following tags' ' cd "$D" && - git tag -a -m 'annotated' anno HEAD && + git tag -a -m "annotated" anno HEAD && git tag light HEAD && mkdir four && @@ -335,7 +335,7 @@ test_expect_success 'bundle does not prerequisite objects' ' test_expect_success 'bundle should be able to create a full history' ' cd "$D" && - git tag -a -m '1.0' v1.0 master && + git tag -a -m "1.0" v1.0 master && git bundle create bundle4 v1.0 ' |