We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7ea005 commit 6c70406Copy full SHA for 6c70406
tests/endtoend/test_http_functions.py
@@ -126,7 +126,7 @@ def test_return_custom_class(self):
126
timeout=REQUEST_TIMEOUT_SEC)
127
self.assertEqual(
128
r.content,
129
- {'status': 'healthy'}
+ b'{"status": "healthy"}'
130
)
131
self.assertTrue(r.ok)
132
@@ -140,7 +140,7 @@ def test_return_custom_class_with_query_param(self):
140
141
142
143
- {'name': 'query'}
+ b'{"name": "query"}'
144
145
146
0 commit comments