Skip to content

Commit bf22fa4

Browse files
committed
Fix UTF-8 hosts test
1 parent 278d2fb commit bf22fa4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/connection_string/test/valid-host_identifiers.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -132,18 +132,18 @@
132132
},
133133
{
134134
"description": "UTF-8 hosts",
135-
"uri": "mongodb://bücher.example.com,umläut.example.com/",
135+
"uri": "mongodb://b\u00fccher.example.com,uml\u00e4ut.example.com/",
136136
"valid": true,
137137
"warning": false,
138138
"hosts": [
139139
{
140140
"type": "hostname",
141-
"host": "bücher.example.com",
141+
"host": "b\u00fccher.example.com",
142142
"port": null
143143
},
144144
{
145145
"type": "hostname",
146-
"host": "umläut.example.com",
146+
"host": "uml\u00e4ut.example.com",
147147
"port": null
148148
}
149149
],

0 commit comments

Comments
 (0)