]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t5520: use sq for test case names
authorDenton Liu <liu.denton@gmail.com>
Tue, 12 Nov 2019 23:07:50 +0000 (15:07 -0800)
committerJunio C Hamano <gitster@pobox.com>
Thu, 21 Nov 2019 00:41:51 +0000 (09:41 +0900)
The usual convention is for test case names to be written between
single-quotes. Change all double-quoted test case names to single-quotes
except for two test case names that use variables within.

Signed-off-by: Denton Liu <liu.denton@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5520-pull.sh

index 51d6ce8aec55074b14635160f14259ea03b9f5d3..a3de2e19b6c6cf411fd38d347bcc2f26a8b5aa98 100755 (executable)
@@ -408,7 +408,7 @@ test_expect_success 'branch.to-rebase.rebase should override pull.rebase' '
        test new = "$(git show HEAD:file2)"
 '
 
-test_expect_success "pull --rebase warns on --verify-signatures" '
+test_expect_success 'pull --rebase warns on --verify-signatures' '
        git reset --hard before-rebase &&
        git pull --rebase --verify-signatures . copy 2>err &&
        test "$(git rev-parse HEAD^)" = "$(git rev-parse copy)" &&
@@ -416,7 +416,7 @@ test_expect_success "pull --rebase warns on --verify-signatures" '
        test_i18ngrep "ignoring --verify-signatures for rebase" err
 '
 
-test_expect_success "pull --rebase does not warn on --no-verify-signatures" '
+test_expect_success 'pull --rebase does not warn on --no-verify-signatures' '
        git reset --hard before-rebase &&
        git pull --rebase --no-verify-signatures . copy 2>err &&
        test "$(git rev-parse HEAD^)" = "$(git rev-parse copy)" &&