summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorPeter Eisentraut2020-05-05 06:49:52 +0000
committerPeter Eisentraut2020-05-05 06:49:52 +0000
commitd5627f3cd0ba191f1e647d66f6d5bb09ff95b786 (patch)
treebab502b8f7bc3d7ce1613bb1de660b6bbd5ada5b /src/test
parentc5114e42fa1ddd2c44a03339ffa436e732477397 (diff)
Fix capitalization of messages, per style guide
Diffstat (limited to 'src/test')
-rw-r--r--src/test/ssl/t/002_scram.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ssl/t/002_scram.pl b/src/test/ssl/t/002_scram.pl
index a6642f88592..ee6e26d7323 100644
--- a/src/test/ssl/t/002_scram.pl
+++ b/src/test/ssl/t/002_scram.pl
@@ -86,7 +86,7 @@ else
test_connect_fails(
$common_connstr,
"user=md5testuser channel_binding=require",
- qr/Channel binding required but not supported by server's authentication request/,
+ qr/channel binding required but not supported by server's authentication request/,
"MD5 with SSL and channel_binding=require");
# Now test with auth method 'cert' by connecting to 'certdb'. Should
@@ -96,7 +96,7 @@ chmod 0600, "ssl/client_tmp.key";
test_connect_fails(
"sslcert=ssl/client.crt sslkey=ssl/client_tmp.key hostaddr=$SERVERHOSTADDR",
"dbname=certdb user=ssltestuser channel_binding=require",
- qr/Channel binding required, but server authenticated client without channel binding/,
+ qr/channel binding required, but server authenticated client without channel binding/,
"Cert authentication and channel_binding=require");
done_testing($number_of_tests);