Skip to content

Commit 75272b7

Browse files
committed
Update expected version
1 parent f0558e4 commit 75272b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def test_auto_load_api_version(self):
9292
httpretty.GET, self.base_domain, body=self.api_description, status=200
9393
)
9494
client = GeocodioClient(self.TEST_API_KEY)
95-
expected_version = "1.6"
95+
expected_version = "1.9"
9696
self.assertEqual(client.version, expected_version)
9797
self.assertTrue(
9898
client.BASE_URL.startswith(
@@ -108,7 +108,7 @@ def test_auto_load_hipaa_api_version(self):
108108
httpretty.GET, self.base_hipaa_domain, body=self.api_description, status=200
109109
)
110110
client = GeocodioClient(self.TEST_API_KEY, hipaa_enabled=True)
111-
expected_version = "1.6"
111+
expected_version = "1.9"
112112
self.assertEqual(client.version, expected_version)
113113
self.assertTrue(
114114
client.BASE_URL.startswith(

0 commit comments

Comments
 (0)