summaryrefslogtreecommitdiffstats
path: root/vespalib
diff options
context:
space:
mode:
authorTor Brede Vekterli <vekterli@oath.com>2018-11-13 13:09:12 +0000
committerTor Brede Vekterli <vekterli@oath.com>2018-11-13 13:09:12 +0000
commit43d60d7b360a1e164772acb29988f433105d28db (patch)
tree4115d46a05ec3fe45388d37e29e089400195a80b /vespalib
parentf635caa3a1b4e6f07040d48328d110cb16e8f2ff (diff)
Correct test name
Diffstat (limited to 'vespalib')
-rw-r--r--vespalib/src/tests/net/tls/policy_checking_certificate_verifier/policy_checking_certificate_verifier_test.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/vespalib/src/tests/net/tls/policy_checking_certificate_verifier/policy_checking_certificate_verifier_test.cpp b/vespalib/src/tests/net/tls/policy_checking_certificate_verifier/policy_checking_certificate_verifier_test.cpp
index 6eb19fec3cd..6e9e0304c89 100644
--- a/vespalib/src/tests/net/tls/policy_checking_certificate_verifier/policy_checking_certificate_verifier_test.cpp
+++ b/vespalib/src/tests/net/tls/policy_checking_certificate_verifier/policy_checking_certificate_verifier_test.cpp
@@ -91,7 +91,7 @@ TEST("Specially constructed set of policies allows all authenticated peers") {
EXPECT_TRUE(verify(allow_all, creds_with_dns_sans({{"anything.goes"}})));
}
-TEST("Non-empty policies do not allow all unauthenticated peers") {
+TEST("Non-empty policies do not allow all authenticated peers") {
auto allow_not_all = allowed_peers({policy_with({required_san_dns("hello.world")})});
EXPECT_FALSE(allow_not_all.allows_all_authenticated());
}