summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-09-19 15:03:55 -0400
committerTim Graham <timograham@gmail.com>2014-09-22 13:43:35 -0400
commit2376319ce089cb3d5484fc1d9861f81a80d6abc4 (patch)
treecbb3d7f0fd1c726a553333e598a0de8093c1fbf3 /django
parent8cee5875a65d6b736c3cbafa774abdc62336ed08 (diff)
[1.6.x] Skipped a broken GIS test on Oracle; refs #23504.
Backport of 828edc5ba9 from master
Diffstat (limited to 'django')
-rw-r--r--django/contrib/gis/tests/relatedapp/tests.py2
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 ab96fd5493..41be66c6c5 100644
--- a/django/contrib/gis/tests/relatedapp/tests.py
+++ b/django/contrib/gis/tests/relatedapp/tests.py
@@ -205,6 +205,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)