diff options
author | Noah Misch | 2020-09-14 06:29:51 +0000 |
---|---|---|
committer | Noah Misch | 2020-09-14 06:29:54 +0000 |
commit | 6fb1c5b528267918a88c4143985a08a3c997e528 (patch) | |
tree | c4de55dd5b9ca08e2338a80c414fd37ac60c67d4 | |
parent | b1b53f15bbac106e241b14ae1bc13f2708fe74c8 (diff) |
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.pl | 2 |
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 c18b737785d..fb0dff648df 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. |