diff options
Diffstat (limited to 'tests/db_functions/text/test_sha224.py')
| -rw-r--r-- | tests/db_functions/text/test_sha224.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/db_functions/text/test_sha224.py b/tests/db_functions/text/test_sha224.py index a8291d416c..d2f1d538dc 100644 --- a/tests/db_functions/text/test_sha224.py +++ b/tests/db_functions/text/test_sha224.py @@ -20,7 +20,6 @@ class SHA224Tests(TestCase): Author(alias=None), ]) - @unittest.skipIf(connection.vendor == 'oracle', "Oracle doesn't support SHA224.") def test_basic(self): authors = Author.objects.annotate( sha224_alias=SHA224('alias'), @@ -37,7 +36,6 @@ class SHA224Tests(TestCase): ], ) - @unittest.skipIf(connection.vendor == 'oracle', "Oracle doesn't support SHA224.") def test_transform(self): with register_lookup(CharField, SHA224): authors = Author.objects.filter( |
