diff options
| author | Florian Apolloner <florian@apolloner.eu> | 2022-12-01 09:39:46 +0100 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-12-01 09:39:46 +0100 |
| commit | 149b55fefad03c18589d580ef53d41e7c99408ed (patch) | |
| tree | e9b9118d1b6b76598746d37c1b0eeb484e78c61f /tests/postgres_tests/test_bulk_update.py | |
| parent | 3cafb783f3f711c7413ba2b8d7c8ff750bd4d6e1 (diff) | |
Refs #33308 -- Ensured type handlers are registered for all PostgreSQL specific tests.
Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
Diffstat (limited to 'tests/postgres_tests/test_bulk_update.py')
| -rw-r--r-- | tests/postgres_tests/test_bulk_update.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/postgres_tests/test_bulk_update.py b/tests/postgres_tests/test_bulk_update.py index 5f91f77791..f0b473efa7 100644 --- a/tests/postgres_tests/test_bulk_update.py +++ b/tests/postgres_tests/test_bulk_update.py @@ -1,7 +1,5 @@ from datetime import date -from django.test import modify_settings - from . import PostgreSQLTestCase from .models import ( HStoreModel, @@ -18,7 +16,6 @@ except ImportError: pass # psycopg2 isn't installed. -@modify_settings(INSTALLED_APPS={"append": "django.contrib.postgres"}) class BulkSaveTests(PostgreSQLTestCase): def test_bulk_update(self): test_data = [ |
