From d7334b405fb0e677e79cb064074df68188f0ddb5 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Fri, 13 May 2016 12:21:44 -0400 Subject: [PATCH] Refs #26333 -- Reverted inadvertent edits to fix tests. --- tests/gis_tests/geos_tests/test_geos.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/gis_tests/geos_tests/test_geos.py b/tests/gis_tests/geos_tests/test_geos.py index 02943baf0d..98eabe8bee 100644 --- a/tests/gis_tests/geos_tests/test_geos.py +++ b/tests/gis_tests/geos_tests/test_geos.py @@ -1259,13 +1259,13 @@ class GEOSTest(SimpleTestCase, TestDataMixin): ls = LineString(((0, 0), (1, 1))) path, args, kwargs = ls.deconstruct() self.assertEqual(path, 'django.contrib.gis.geos.linestring.LineString') - self.assertEqual(args, (((0, 0), (1, 1)))) + self.assertEqual(args, (((0, 0), (1, 1)),)) self.assertEqual(kwargs, {}) ls2 = LineString([Point(0, 0), Point(1, 1)], srid=4326) path, args, kwargs = ls2.deconstruct() self.assertEqual(path, 'django.contrib.gis.geos.linestring.LineString') - self.assertEqual(args, ([Point(0, 0), Point(1, 1)])) + self.assertEqual(args, ([Point(0, 0), Point(1, 1)],)) self.assertEqual(kwargs, {'srid': 4326}) ext_coords = ((0, 0), (0, 1), (1, 1), (1, 0), (0, 0))