diff options
| author | Tim Graham <timograham@gmail.com> | 2014-09-19 15:03:55 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-09-19 15:03:55 -0400 |
| commit | 828edc5ba91e124392417c5a87c17647dbb1cf67 (patch) | |
| tree | a491853d9cb499ede2a9c90ff96794510a43e1f4 | |
| parent | 7add30df01f46ec91b8da411620a0f1a117c1b73 (diff) | |
Skipped a broken GIS test on Oracle; refs #23504.
| -rw-r--r-- | django/contrib/gis/tests/relatedapp/tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/django/contrib/gis/tests/relatedapp/tests.py b/django/contrib/gis/tests/relatedapp/tests.py index e98d637b69..2981ce6092 100644 --- a/django/contrib/gis/tests/relatedapp/tests.py +++ b/django/contrib/gis/tests/relatedapp/tests.py @@ -217,6 +217,8 @@ class RelatedGeoModelTest(TestCase): self.assertEqual(val_dict['id'], c_id) self.assertEqual(val_dict['location__id'], l_id) + # TODO: fix on Oracle -- qs2 returns an empty result for an unknown reason + @no_oracle def test10_combine(self): "Testing the combination of two GeoQuerySets. See #10807." buf1 = City.objects.get(name='Aurora').location.point.buffer(0.1) |
