From 635acf42c53e77e1ab0fd61e248730d99501c5c1 Mon Sep 17 00:00:00 2001 From: Marc Tamlyn Date: Thu, 22 May 2014 15:05:19 +0100 Subject: [PATCH] Fix a test dependent on json ordering. --- tests/postgres_tests/test_array.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/postgres_tests/test_array.py b/tests/postgres_tests/test_array.py index 35ea65480ad..b8ae48c5bc3 100644 --- a/tests/postgres_tests/test_array.py +++ b/tests/postgres_tests/test_array.py @@ -1,3 +1,4 @@ +import json import unittest from django.contrib.postgres.fields import ArrayField @@ -226,7 +227,7 @@ class TestSerialization(TestCase): def test_dumping(self): instance = IntegerArrayModel(field=[1, 2]) data = serializers.serialize('json', [instance]) - self.assertEqual(data, self.test_data) + self.assertEqual(json.loads(data), json.loads(self.test_data)) def test_loading(self): instance = list(serializers.deserialize('json', self.test_data))[0].object