Skip to content

Commit 63bd210

Browse files
committed
fix: fix cap error in zip code error verification
1 parent 56417c4 commit 63bd210

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

test/Integration/test_zip_lookups_api.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ def test_lookup_error(self):
7474

7575
with self.assertRaises(Exception) as context:
7676
self.api.lookup(zip)
77-
self.assertTrue("invalid ZIP code" in context.exception.__str__())
77+
print(context.exception.__str__())
78+
self.assertTrue("invalid zip code" in context.exception.__str__())
7879

7980

8081
if __name__ == '__main__':

0 commit comments

Comments
 (0)