summaryrefslogtreecommitdiff
path: root/src/test/authentication
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2018-04-26 11:52:52 -0400
committerPeter Eisentraut <peter_e@gmx.net>2018-04-27 11:37:43 -0400
commitd4f16d50713077e69f8833df6b99d1eab0be1c33 (patch)
treef9acf7a056f6db6ba9b4e0059710276bb40d37aa /src/test/authentication
parenta2ada08d4c0afa2d1f678ba7fb03ccc065f3a57b (diff)
perltidy: Add option --nooutdent-long-quotes
Diffstat (limited to 'src/test/authentication')
-rw-r--r--src/test/authentication/t/001_password.pl5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/test/authentication/t/001_password.pl b/src/test/authentication/t/001_password.pl
index 9340f2f1ab4..c8dc6606be9 100644
--- a/src/test/authentication/t/001_password.pl
+++ b/src/test/authentication/t/001_password.pl
@@ -57,10 +57,11 @@ $node->start;
# Create 3 roles with different password methods for each one. The same
# password is used for all of them.
$node->safe_psql('postgres',
-"SET password_encryption='scram-sha-256'; CREATE ROLE scram_role LOGIN PASSWORD 'pass';"
+ "SET password_encryption='scram-sha-256'; CREATE ROLE scram_role LOGIN PASSWORD 'pass';"
);
$node->safe_psql('postgres',
-"SET password_encryption='md5'; CREATE ROLE md5_role LOGIN PASSWORD 'pass';");
+ "SET password_encryption='md5'; CREATE ROLE md5_role LOGIN PASSWORD 'pass';"
+);
$ENV{"PGPASSWORD"} = 'pass';
# For "trust" method, all users should be able to connect.