diff --git a/django_cockroachdb_gis/features.py b/django_cockroachdb_gis/features.py index f415ed01..42fdeb4a 100644 --- a/django_cockroachdb_gis/features.py +++ b/django_cockroachdb_gis/features.py @@ -1,7 +1,6 @@ from django.contrib.gis.db.backends.postgis.features import ( DatabaseFeatures as PostGISFeatures, ) -from django.db.backends.postgresql.psycopg_any import is_psycopg3 from django.utils.functional import cached_property from django_cockroachdb.features import DatabaseFeatures as CockroachFeatures @@ -74,15 +73,6 @@ def django_test_expected_failures(self): # https://github.com/cockroachdb/cockroach/issues/47420#issuecomment-969578772 'gis_tests.gis_migrations.test_operations.OperationTests.test_add_3d_field_opclass', }) - if is_psycopg3 and not self.is_cockroachdb_24_1: - expected_failures.update({ - # QuerySet.bulk_create() doesn't work with geometries after - # https://github.com/django/django/commit/a16eedcf9c69d8a11d94cac1811018c5b996d491 - # could not parse geometry: error parsing EWKB hex: encoding/hex: - # invalid byte: U+003A ':' - # https://github.com/cockroachdb/cockroach/issues/138140 - 'gis_tests.geoapp.test_functions.GISFunctionsTests.test_area_lookups', - }) if self.uses_server_side_binding: expected_failures.update({ # unknown signature: st_scale(geometry, int, int)