Skip to content

Commit a0b7750

Browse files
committed
Fix path for GeoIP REST API in tests
1 parent 0016de1 commit a0b7750

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/webservices_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ def test_request(self, get):
167167
self._setup_get(get, 'country', 200, self.country)
168168
country = self.client.country('1.2.3.4')
169169
get.assert_called_with('https://geoip.maxmind.com'
170-
'/geoip/country/1.2.3.4',
170+
'/geoip/v1/country/1.2.3.4',
171171
headers={'Accept': 'application/json'},
172172
auth=(42, 'abcdef123456'))
173173

0 commit comments

Comments
 (0)