Don't escape servername in json blobs

This commit is contained in:
Simon Li
2022-06-01 22:21:00 +01:00
parent cedf12baeb
commit 2bc5061e22
2 changed files with 2 additions and 2 deletions

View File

@@ -175,7 +175,7 @@ async def test_create_invalid_named_server(app, named_servers):
r.raise_for_status()
assert exc.value.response.json() == {
'status': 400,
'message': 'Invalid server_name: a$/b',
'message': "Invalid server_name (may not contain '/'): a$/b",
}