Skip to content

Commit e8e3646

Browse files
Update test_base.py
fix typo
1 parent df3ec13 commit e8e3646

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

climada/entity/exposures/test/test_base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -671,13 +671,13 @@ def test_latlon_with_polygons(self):
671671
with self.assertRaises(ValueError) as valer:
672672
exp.latitude
673673
self.assertEqual(
674-
"Can only calculate latitude from Points. GeoDataFrame contains Polygon, MulitPolygon",
674+
"Can only calculate latitude from Points. GeoDataFrame contains Polygon, MultiPolygon",
675675
str(valer.exception),
676676
)
677677
with self.assertRaises(ValueError) as valer:
678678
exp.longitude
679679
self.assertEqual(
680-
"Can only calculate latitude from Points. GeoDataFrame contains Polygon, MulitPolygon",
680+
"Can only calculate latitude from Points. GeoDataFrame contains Polygon, MultiPolygon",
681681
str(valer.exception),
682682
)
683683

0 commit comments

Comments
 (0)