summaryrefslogtreecommitdiff
path: root/src/mongo/util/icu_test.cpp
diff options
context:
space:
mode:
authorJonathan Reams <jbreams@mongodb.com>2018-11-26 18:22:38 -0500
committerJonathan Reams <jbreams@mongodb.com>2018-12-17 12:59:30 -0500
commitf805aa89667e12b16a3dd79d7a6167cace89246f (patch)
tree8440572aef526751d0902267ac77d5bd682e548e /src/mongo/util/icu_test.cpp
parentc82cee47c3208a75f928ad3c87cc3db9a23b0f38 (diff)
downloadmongo-f805aa89667e12b16a3dd79d7a6167cace89246f.tar.gz
SERVER-37834 Implement RFC 4514 X509 DN parser
Diffstat (limited to 'src/mongo/util/icu_test.cpp')
-rw-r--r--src/mongo/util/icu_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/util/icu_test.cpp b/src/mongo/util/icu_test.cpp
index a14faeb42c0..38a5bd2a265 100644
--- a/src/mongo/util/icu_test.cpp
+++ b/src/mongo/util/icu_test.cpp
@@ -42,7 +42,7 @@ struct testCases {
bool success;
};
-TEST(ICUTest, saslPrep) {
+TEST(ICUTest, icuSaslPrep) {
const testCases tests[] = {
// U+0065 LATIN SMALL LETTER E + U+0301 COMBINING ACUTE ACCENT
// U+00E9 LATIN SMALL LETTER E WITH ACUTE
@@ -66,7 +66,7 @@ TEST(ICUTest, saslPrep) {
};
for (const auto test : tests) {
- auto ret = saslPrep(test.original);
+ auto ret = icuSaslPrep(test.original);
ASSERT_EQ(ret.isOK(), test.success);
if (test.success) {
ASSERT_OK(ret);