summaryrefslogtreecommitdiff
path: root/tests/postgres_tests
diff options
context:
space:
mode:
authorAlasdair Nicol <alasdair@thenicols.net>2015-04-27 15:59:16 +0100
committerTim Graham <timograham@gmail.com>2015-04-28 09:31:04 -0400
commiteaeea6f94701547ce1b50dbcf5cf71460e9e4c91 (patch)
tree079b87aab13fc4db25f88ad2c98e68512c7bc39a /tests/postgres_tests
parent3b133ffb8bdf1e0e4c3f2c3af8a62376da643350 (diff)
Fixed #24714 -- Used more specific assertions than assertEqual in tests.
Diffstat (limited to 'tests/postgres_tests')
-rw-r--r--tests/postgres_tests/test_ranges.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/postgres_tests/test_ranges.py b/tests/postgres_tests/test_ranges.py
index 35b79f9dc4..cab7263af2 100644
--- a/tests/postgres_tests/test_ranges.py
+++ b/tests/postgres_tests/test_ranges.py
@@ -90,7 +90,7 @@ class TestSaveLoad(TestCase):
instance = RangesModel(ints=None)
instance.save()
loaded = RangesModel.objects.get()
- self.assertEqual(None, loaded.ints)
+ self.assertIsNone(loaded.ints)
@skipUnlessPG92