aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoah Misch <noah@leadboat.com>2020-09-13 23:29:51 -0700
committerNoah Misch <noah@leadboat.com>2020-09-13 23:29:51 -0700
commit47a3a1c3d4981c85f1819bb495ec4ff70f1b9456 (patch)
tree2c53a705b75055ea8e751daa9d8d3a51ed84bc6c
parent95233011a08fcfa872f4505b295bc501b2844a08 (diff)
downloadpostgresql-47a3a1c3d4981c85f1819bb495ec4ff70f1b9456.tar.gz
postgresql-47a3a1c3d4981c85f1819bb495ec4ff70f1b9456.zip
Fix interpolation in test name.
A pre-commit review had reported the problem, but the fix reached only v10 and earlier. Back-patch to v11. Discussion: https://postgr.es/m/20200423.140546.1055476118690602079.horikyota.ntt@gmail.com
-rw-r--r--src/test/recovery/t/020_archive_status.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/recovery/t/020_archive_status.pl b/src/test/recovery/t/020_archive_status.pl
index c726453417b..eb5c04c4115 100644
--- a/src/test/recovery/t/020_archive_status.pl
+++ b/src/test/recovery/t/020_archive_status.pl
@@ -64,7 +64,7 @@ is( $primary->safe_psql(
FROM pg_stat_archiver
}),
"0|$segment_name_1",
- 'pg_stat_archiver failed to archive $segment_name_1');
+ "pg_stat_archiver failed to archive $segment_name_1");
# Crash the cluster for the next test in charge of checking that non-archived
# WAL segments are not removed.