Fixed #15358 -- Renamed a test to avoid a naming collision. Thanks to mila for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15598 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
52fc61e0cf
commit
01c42cbb99
|
@ -699,7 +699,7 @@ class GeoModelTest(TestCase):
|
||||||
self.assertEqual(tuple(coords), t.reverse_geom.coords)
|
self.assertEqual(tuple(coords), t.reverse_geom.coords)
|
||||||
if oracle:
|
if oracle:
|
||||||
self.assertRaises(TypeError, State.objects.reverse_geom)
|
self.assertRaises(TypeError, State.objects.reverse_geom)
|
||||||
|
|
||||||
@no_mysql
|
@no_mysql
|
||||||
@no_oracle
|
@no_oracle
|
||||||
@no_spatialite
|
@no_spatialite
|
||||||
|
@ -718,7 +718,7 @@ class GeoModelTest(TestCase):
|
||||||
@no_mysql
|
@no_mysql
|
||||||
@no_oracle
|
@no_oracle
|
||||||
@no_spatialite
|
@no_spatialite
|
||||||
def test29_force_rhr(self):
|
def test30_geohash(self):
|
||||||
"Testing GeoQuerySet.geohash()."
|
"Testing GeoQuerySet.geohash()."
|
||||||
if not connection.ops.geohash: return
|
if not connection.ops.geohash: return
|
||||||
# Reference query:
|
# Reference query:
|
||||||
|
|
Loading…
Reference in New Issue