From 9e294d0f34d6e3e4fecf6f190b48862988934cde Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Sat, 13 Mar 2021 00:06:56 -0500 Subject: [PATCH] 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 --- src/bin/pg_amcheck/t/003_check.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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');