diff options
| author | Frantisek Holop <fholop@ripe.net> | 2020-05-25 11:24:34 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2020-05-27 10:46:22 +0200 |
| commit | 73216aaaa97e141133d3d0ba28983125bded2b9f (patch) | |
| tree | 63ae5826940d57e6eb7ba0587880e84f4133643d /tests/postgres_tests | |
| parent | 7c947f0f5a0539add9adf8c4e14726ea509e13ef (diff) | |
Used not installed extension in CreateExtension() tests.
uuid-ossp was already installed.
Diffstat (limited to 'tests/postgres_tests')
| -rw-r--r-- | tests/postgres_tests/test_operations.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/postgres_tests/test_operations.py b/tests/postgres_tests/test_operations.py index 7bcf6b2300..0a9d8040ef 100644 --- a/tests/postgres_tests/test_operations.py +++ b/tests/postgres_tests/test_operations.py @@ -158,7 +158,7 @@ class CreateExtensionTests(PostgreSQLTestCase): @override_settings(DATABASE_ROUTERS=[NoExtensionRouter()]) def test_no_allow_migrate(self): - operation = CreateExtension('uuid-ossp') + operation = CreateExtension('tablefunc') project_state = ProjectState() new_state = project_state.clone() # Don't create an extension. @@ -173,7 +173,7 @@ class CreateExtensionTests(PostgreSQLTestCase): self.assertEqual(len(captured_queries), 0) def test_allow_migrate(self): - operation = CreateExtension('uuid-ossp') + operation = CreateExtension('tablefunc') project_state = ProjectState() new_state = project_state.clone() # Create an extension. |
