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:06:11 -0400 |
| commit | 17a4038cf3aad025c653342eb18882c38dbdb1a9 (patch) | |
| tree | 80611f68be37d2478ccfa97ecda756061801ea88 | |
| parent | b287676739849aae397969aef4e0e09e88cf8bdb (diff) | |
[1.7.x] Skipped a broken GIS test on Oracle; refs #23504.
Backport of 828edc5ba9 from master
| -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 67819117b6..761cdb6b69 100644 --- a/django/contrib/gis/tests/relatedapp/tests.py +++ b/django/contrib/gis/tests/relatedapp/tests.py @@ -207,6 +207,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) |
