Fix one more TAP test to use standard command-line argument ordering.

Commit c67a86f7da caught most of these,
but this negative test escaped notice.  The test did pass, for the wrong
reason, under affected configurations.

Michael Paquier
pull/14/head
Noah Misch 11 years ago
parent b339a5cf90
commit 84c08a7649
  1. 2
      src/bin/initdb/t/001_initdb.pl

@ -25,7 +25,7 @@ command_ok([ 'initdb', '-X', "$tempdir/pgxlog", "$tempdir/data" ],
system_or_bail "rm -rf '$tempdir'/*";
command_fails(
[ 'initdb', "$tempdir/data", '-X', 'pgxlog' ],
[ 'initdb', '-X', 'pgxlog', "$tempdir/data" ],
'relative xlog directory not allowed');
system_or_bail "rm -rf '$tempdir'/*";

Loading…
Cancel
Save