summaryrefslogtreecommitdiff
path: root/tests/postgres_tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests/postgres_tests')
-rw-r--r--tests/postgres_tests/test_signals.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/postgres_tests/test_signals.py b/tests/postgres_tests/test_signals.py
index 764524d8e6..80a28a9776 100644
--- a/tests/postgres_tests/test_signals.py
+++ b/tests/postgres_tests/test_signals.py
@@ -34,8 +34,9 @@ class OIDTests(PostgreSQLTestCase):
self.assertOIDs(array_oids)
def test_citext_values(self):
- oids = get_citext_oids(connection.alias)
+ oids, citext_oids = get_citext_oids(connection.alias)
self.assertOIDs(oids)
+ self.assertOIDs(citext_oids)
def test_register_type_handlers_no_db(self):
"""Registering type handlers for the nodb connection does nothing."""