summaryrefslogtreecommitdiff
path: root/tests/postgres_tests/test_functions.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-09-06 10:26:45 -0400
committerTim Graham <timograham@gmail.com>2017-09-27 11:00:04 -0400
commit1d8cfa36089f2d1295abad03a99fc3c259bde6b5 (patch)
tree458e608105acb5fe7e9db7e2c01c833df1673795 /tests/postgres_tests/test_functions.py
parentea7ca5db302367d84f92a4cf0ca03ec62886a7ca (diff)
Fixed #28626 -- Dropped support for PostgreSQL 9.3.
Thanks Simon Charette for the introspection changes.
Diffstat (limited to 'tests/postgres_tests/test_functions.py')
-rw-r--r--tests/postgres_tests/test_functions.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/postgres_tests/test_functions.py b/tests/postgres_tests/test_functions.py
index de5cb4d767..875a4b9520 100644
--- a/tests/postgres_tests/test_functions.py
+++ b/tests/postgres_tests/test_functions.py
@@ -4,7 +4,7 @@ from time import sleep
from django.contrib.postgres.functions import RandomUUID, TransactionNow
-from . import PostgreSQLTestCase, skipUnlessPG94
+from . import PostgreSQLTestCase
from .models import NowTestModel, UUIDTestModel
@@ -29,7 +29,6 @@ class TestTransactionNow(PostgreSQLTestCase):
self.assertEqual(m1.when, m2.when)
-@skipUnlessPG94
class TestRandomUUID(PostgreSQLTestCase):
def test_random_uuid(self):