summaryrefslogtreecommitdiff
path: root/tests/postgres_tests/test_hstore.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/postgres_tests/test_hstore.py')
-rw-r--r--tests/postgres_tests/test_hstore.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/postgres_tests/test_hstore.py b/tests/postgres_tests/test_hstore.py
index 09d2de1017..b7656eee9e 100644
--- a/tests/postgres_tests/test_hstore.py
+++ b/tests/postgres_tests/test_hstore.py
@@ -47,13 +47,13 @@ class SimpleTests(HStoreTestCase):
instance = HStoreModel.objects.create(field=value)
instance = HStoreModel.objects.get()
- self.assertDictEqual(instance.field, expected_value)
+ self.assertEqual(instance.field, expected_value)
instance = HStoreModel.objects.get(field__a=1)
- self.assertDictEqual(instance.field, expected_value)
+ self.assertEqual(instance.field, expected_value)
instance = HStoreModel.objects.get(field__has_keys=[2, 'a', 'ï'])
- self.assertDictEqual(instance.field, expected_value)
+ self.assertEqual(instance.field, expected_value)
class TestQuerying(HStoreTestCase):