Procházet zdrojové kódy

Refs #26333 -- Reverted inadvertent edits to fix tests.

Tim Graham před 9 roky
rodič
revize
d7334b405f
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      tests/gis_tests/geos_tests/test_geos.py

+ 2 - 2
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))