Skip to content

Commit 6c70406

Browse files
committed
fix test
1 parent b7ea005 commit 6c70406

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/endtoend/test_http_functions.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def test_return_custom_class(self):
126126
timeout=REQUEST_TIMEOUT_SEC)
127127
self.assertEqual(
128128
r.content,
129-
{'status': 'healthy'}
129+
b'{"status": "healthy"}'
130130
)
131131
self.assertTrue(r.ok)
132132

@@ -140,7 +140,7 @@ def test_return_custom_class_with_query_param(self):
140140
self.assertTrue(r.ok)
141141
self.assertEqual(
142142
r.content,
143-
{'name': 'query'}
143+
b'{"name": "query"}'
144144
)
145145

146146

0 commit comments

Comments
 (0)