1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Removed obsolete HAS_GEOS variable for test skipping.

This commit is contained in:
Tim Graham
2017-05-04 11:03:23 -04:00
parent 2dc3280254
commit b014de011b
6 changed files with 16 additions and 32 deletions

View File

@@ -3,10 +3,9 @@
# released under the New BSD license.
import unittest
from unittest import skipUnless
from django.contrib.gis.geos import (
HAS_GEOS, LinearRing, LineString, MultiPoint, Point, Polygon, fromstr,
LinearRing, LineString, MultiPoint, Point, Polygon, fromstr,
)
@@ -72,7 +71,6 @@ geos_function_tests = [
]
@skipUnless(HAS_GEOS, "Geos is required.")
class GEOSMutationTest(unittest.TestCase):
"""
Tests Pythonic Mutability of Python GEOS geometry wrappers