diff options
| author | Tim Graham <timograham@gmail.com> | 2014-09-19 15:03:55 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-09-22 13:43:35 -0400 |
| commit | 2376319ce089cb3d5484fc1d9861f81a80d6abc4 (patch) | |
| tree | cbb3d7f0fd1c726a553333e598a0de8093c1fbf3 /django | |
| parent | 8cee5875a65d6b736c3cbafa774abdc62336ed08 (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.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 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) |
