summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane2021-03-13 05:06:56 +0000
committerTom Lane2021-03-13 05:06:56 +0000
commit9e294d0f34d6e3e4fecf6f190b48862988934cde (patch)
treeeb33374b24462ec1b92b00d0416c20b315303c3c /src
parentde91c3b976cfacddacd45a9b52046264c0e44b11 (diff)
pg_amcheck: Keep trying to fix the tests.
Fix another example of non-portable option ordering in the tests. Oversight in 24189277f. Mark Dilger Discussion: https://postgr.es/m/C37D28BA-3BA3-4776-B812-17F05F3472D8@enterprisedb.com
Diffstat (limited to 'src')
-rw-r--r--src/bin/pg_amcheck/t/003_check.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_amcheck/t/003_check.pl b/src/bin/pg_amcheck/t/003_check.pl
index 0a7795bb64d..54b2b86a49b 100644
--- a/src/bin/pg_amcheck/t/003_check.pl
+++ b/src/bin/pg_amcheck/t/003_check.pl
@@ -468,7 +468,7 @@ command_fails_like(
'pg_amcheck rejects garbage startblock');
command_fails_like(
- [ @cmd, 'db1', '-s', 's5', '--endblock', '1234junk' ],
+ [ @cmd, '-s', 's5', '--endblock', '1234junk', 'db1' ],
qr/invalid end block/,
'pg_amcheck rejects garbage endblock');