Parcourir la source

Correct dicts comparison

Denis K il y a 9 ans
Parent
commit
4180c1aa03
1 fichiers modifiés avec 4 ajouts et 1 suppressions
  1. 4 1
      jet/tests/test_utils.py

+ 4 - 1
jet/tests/test_utils.py

@@ -1,3 +1,4 @@
+import json
 from django.test import TestCase
 from jet.tests.models import TestModel
 from jet.utils import JsonResponse, get_model_instance_label
@@ -6,7 +7,9 @@ from jet.utils import JsonResponse, get_model_instance_label
 class UtilsTestCase(TestCase):
     def test_json_response(self):
         response = JsonResponse({'str': 'string', 'int': 1})
-        self.assertEqual(response.content, '{"int": 1, "str": "string"}')
+        response_dict = json.loads(response.content)
+        expected_dict = {"int": 1, "str": "string"}
+        self.assertEqual(response_dict, expected_dict)
         self.assertEqual(response.get('Content-Type'), 'application/json')
 
     def test_get_model_instance_label(self):