Index: Shapely/trunk/tests/test_linestring.py
===================================================================
--- Shapely/trunk/tests/test_linestring.py (revision 1168)
+++ Shapely/trunk/tests/test_linestring.py (revision 1176)
@@ -114,20 +114,2 @@
                           array([0, 0])
                           )
-
-    def test_coords_update(self):
-        p = linestring.LineString(((0.0, 0.0), (1.0, 1.0)))
-        linestring.update_linestring_from_py(p, ((1.0, 1.0), (2.0, 2.0)))
-        self.assertRaises(ValueError,
-                          linestring.update_linestring_from_py,
-                          p, [[1.0, 1.0, 1.0], [2.0, 2.0, 2.0]]
-                          )
-                               
-    def test_coords_update_numpy(self):
-        p = linestring.LineString(((0.0, 0.0), (1.0, 1.0)))
-        linestring.update_linestring_from_py(p, array([[1.0, 1.0], [2.0, 2.0]]))
-        self.assertRaises(ValueError,
-                          linestring.update_linestring_from_py,
-                          p, array([[1.0, 1.0, 1.0], [2.0, 2.0, 2.0]])
-                          )
-        
-        
