Skip to content

Commit 24897d3

Browse files
committed
fix unicode literal creation
1 parent 99e0d61 commit 24897d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tests/MongoSwiftTests/AuthTests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ final class AuthTests: MongoSwiftTestCase {
268268
// 4. To test SASLprep behavior, create two users:
269269
let saslPrepUsers = [
270270
TestUser(username: "IX", password: "IX", mechanisms: [.scramSHA256]),
271-
TestUser(username: "\\u2168", password: "\\u2163", mechanisms: [.scramSHA256])
271+
TestUser(username: "\u{2168}", password: "\u{2163}", mechanisms: [.scramSHA256])
272272
]
273273
for user in saslPrepUsers {
274274
try admin.runCommand(user.createCmd)

0 commit comments

Comments
 (0)