Made test for GIS Envelope function more strict.

This commit is contained in:
Sergey Fedoseev 2018-06-20 16:47:55 +05:00
parent 7409d21a5e
commit d8d21d3891
1 changed files with 1 additions and 1 deletions

View File

@ -214,7 +214,7 @@ class GISFunctionsTests(FuncTestMixin, TestCase):
def test_envelope(self):
countries = Country.objects.annotate(envelope=functions.Envelope('mpoly'))
for country in countries:
self.assertIsInstance(country.envelope, Polygon)
self.assertTrue(country.envelope.equals(country.mpoly.envelope))
@skipUnlessDBFeature("has_ForcePolygonCW_function")
def test_force_polygon_cw(self):