Browse Source

fix tests for prevent dict key order mix

Bastien Sevajol 6 years ago
parent
commit
42591e743b
1 changed files with 4 additions and 4 deletions
  1. 4 4
      tests/unit/test_decorator.py

+ 4 - 4
tests/unit/test_decorator.py View File

@@ -278,11 +278,11 @@ class TestExceptionHandlerControllerWrapper(Base):
278 278
         assert 'http_code' in response
279 279
         assert response['http_code'] == HTTPStatus.INTERNAL_SERVER_ERROR
280 280
         assert 'original_response' in response
281
-        assert response['original_response'] == json.dumps({
281
+        assert json.loads(response['original_response']) == {
282 282
             'message': 'We are testing',
283 283
             'details': {},
284 284
             'code': None,
285
-        })
285
+        }
286 286
 
287 287
     def test_unit__exception_handled__ok__exception_error_dict(self):
288 288
         class MyException(Exception):
@@ -308,11 +308,11 @@ class TestExceptionHandlerControllerWrapper(Base):
308 308
         assert 'http_code' in response
309 309
         assert response['http_code'] == HTTPStatus.INTERNAL_SERVER_ERROR
310 310
         assert 'original_response' in response
311
-        assert response['original_response'] == json.dumps({
311
+        assert json.loads(response['original_response']) == {
312 312
             'message': 'We are testing',
313 313
             'details': {'foo': 'bar'},
314 314
             'code': None,
315
-        })
315
+        }
316 316
 
317 317
     def test_unit__exception_handler__error__error_content_malformed(self):
318 318
         class MyException(Exception):