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:01:59 -0400
commitb4c99203528b176fe3ebcf38002ef2c2ea723a7a (patch)
treec41132ec77826b8eaf3934ccd9940d6286da29b1
parent991ec655b64a6284a09117a8474026d9a75bc963 (diff)
[1.7.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 97d395af4c..0d43f63eed 100644
--- a/django/contrib/gis/tests/geoapp/tests.py
+++ b/django/contrib/gis/tests/geoapp/tests.py
@@ -773,7 +773,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