summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-09-23 19:51:14 -0400
committerTim Graham <timograham@gmail.com>2014-09-23 20:06:50 -0400
commit943716c8ee601f4c12b5e0dc4a04e85c9dbe244b (patch)
treeba7aed40fc298cfaf5767d01b0f6b78b25acc360
parentdd7346ed1daf30ee37517057b58900bd10ba978b (diff)
[1.6.x] Skipped a broken geoapp test on Oracle; refs #23504.
Backport of 729cd6a11a from master
-rw-r--r--django/contrib/gis/tests/geoapp/tests.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/django/contrib/gis/tests/geoapp/tests.py b/django/contrib/gis/tests/geoapp/tests.py
index 9d4161a907..99c26c45ae 100644
--- a/django/contrib/gis/tests/geoapp/tests.py
+++ b/django/contrib/gis/tests/geoapp/tests.py
@@ -756,7 +756,11 @@ class GeoQuerySetTest(TestCase):
self.assertAlmostEqual(c1[0] + xfac, c2[0], 5)
self.assertAlmostEqual(c1[1] + yfac, c2[1], 5)
+ # TODO: Oracle can be made to pass if
+ # union1 = union2 = fromstr('POINT (-97.5211570000000023 34.4646419999999978)')
+ # but this seems unexpected and should be investigated to determine the cause.
@no_mysql
+ @no_oracle
def test_unionagg(self):
"Testing the `unionagg` (aggregate union) GeoQuerySet method."
tx = Country.objects.get(name='Texas').mpoly