diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-08-03 11:42:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-03 11:42:51 +0200 |
| commit | cb791a2540c289390b68a3ea9c6a79476890bab2 (patch) | |
| tree | a09b63477f9fcce4e56636978236ef10c68ff891 /tests/backends/postgresql/tests.py | |
| parent | 09e837c5d93d8ac22697e711901a63ead59c9fd4 (diff) | |
Fixed #33872 -- Deprecated django.contrib.postgres.fields.CIText/CICharField/CIEmailField/CITextField.
Diffstat (limited to 'tests/backends/postgresql/tests.py')
| -rw-r--r-- | tests/backends/postgresql/tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/backends/postgresql/tests.py b/tests/backends/postgresql/tests.py index 63d7064aac..e28acef2c0 100644 --- a/tests/backends/postgresql/tests.py +++ b/tests/backends/postgresql/tests.py @@ -283,6 +283,7 @@ class Tests(TestCase): for lookup in lookups: with self.subTest(lookup=lookup): self.assertIn("::text", do.lookup_cast(lookup)) + # RemovedInDjango51Warning. for lookup in lookups: for field_type in ("CICharField", "CIEmailField", "CITextField"): with self.subTest(lookup=lookup, field_type=field_type): |
