[PATCH 2/3] t5516: use double quotes for tests with variables
From: Karthik Nayak <hidden>
Date: 2025-06-02 09:57:41
Subsystem:
the rest · Maintainer:
Linus Torvalds
Since expressions don't expand within single quotes, change test descriptions containing variables to use double quotes. Signed-off-by: Karthik Nayak <redacted> --- t/t5516-fetch-push.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/t/t5516-fetch-push.sh b/t/t5516-fetch-push.sh
index dabcc5f811..029ef92d58 100755
--- a/t/t5516-fetch-push.sh
+++ b/t/t5516-fetch-push.sh@@ -1421,7 +1421,7 @@ test_expect_success 'peeled advertisements are not considered ref tips' ' test_grep "Server does not allow request for unadvertised object" err ' -test_expect_success 'pushing a specific ref applies remote.$name.push as refmap' ' +test_expect_success "pushing a specific ref applies remote.$name.push as refmap" ' mk_test testrepo heads/main && test_when_finished "rm -rf src" && git init src &&
@@ -1446,7 +1446,7 @@ test_expect_success 'pushing a specific ref applies remote.$name.push as refmap' test_cmp dst/expect dst/actual ' -test_expect_success 'with no remote.$name.push, it is not used as refmap' ' +test_expect_success "with no remote.$name.push, it is not used as refmap" ' mk_test testrepo heads/main && test_when_finished "rm -rf src" && git init src &&
@@ -1469,7 +1469,7 @@ test_expect_success 'with no remote.$name.push, it is not used as refmap' ' test_cmp dst/expect dst/actual ' -test_expect_success 'with no remote.$name.push, upstream mapping is used' ' +test_expect_success "with no remote.$name.push, upstream mapping is used" ' mk_test testrepo heads/main && test_when_finished "rm -rf src" && git init src &&
--
2.49.0