Remove duplicated --no-sync switches in new tests of test_pg_dump

These got introduced in 6568cef.

Reported-by: Noah Misch
Discussion: https://postgr.es/m/20210404220802.GA728316@rfd.leadboat.com
This commit is contained in:
Michael Paquier 2021-04-13 09:42:01 +09:00
parent cf0020080a
commit 885a876419
1 changed files with 2 additions and 2 deletions

View File

@ -198,7 +198,7 @@ my %pgdump_runs = (
with_extension => {
dump_cmd => [
'pg_dump', '--no-sync', "--file=$tempdir/with_extension.sql",
'--extension=test_pg_dump', '--no-sync', 'postgres',
'--extension=test_pg_dump', 'postgres',
],
},
@ -206,7 +206,7 @@ my %pgdump_runs = (
without_extension => {
dump_cmd => [
'pg_dump', '--no-sync', "--file=$tempdir/without_extension.sql",
'--extension=plpgsql', '--no-sync', 'postgres',
'--extension=plpgsql', 'postgres',
],
},);