fix typo in test name

This commit is contained in:
Carson Farmer
2013-11-18 22:31:20 -06:00
committed by Kelsey Jordahl
parent a99b759ba4
commit a19e12ce99
+1 -1
View File
@@ -119,7 +119,7 @@ class TestDataFrame(unittest.TestCase):
def _should_raise_type_error_with_non_geo():
df = self.df.copy()
df.geometry = range(df.shape[0])
self.assertRaises(TypeError, _should_raise_value_error_with_non_geo)
self.assertRaises(TypeError, _should_raise_type_error_with_non_geo)
def _should_raise_key_error():
>>>>>>> BUG: Check that set_geometry will set valid geometry column