Fixed #29792 -- Made GeometryField.deconstruct() handle 'extent' and 'tolerance' args.

This commit is contained in:
jtiai 2018-12-21 17:44:34 -05:00 committed by Tim Graham
parent 7b9f8e38bb
commit 5a77190e66
2 changed files with 8 additions and 0 deletions

View file

@ -27,10 +27,14 @@ class GeometryFieldTests(SimpleTestCase):
srid=4067,
dim=3,
geography=True,
extent=(50199.4814, 6582464.0358, -50000.0, 761274.6247, 7799839.8902, 50000.0),
tolerance=0.01,
)
*_, kwargs = field.deconstruct()
self.assertEqual(kwargs, {
'srid': 4067,
'dim': 3,
'geography': True,
'extent': (50199.4814, 6582464.0358, -50000.0, 761274.6247, 7799839.8902, 50000.0),
'tolerance': 0.01,
})