Skip to content

Commit 3481434

Browse files
committed
Update python test to use api64.
1 parent 64c676c commit 3481434

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/python/getip.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class TestIpify(unittest.TestCase):
1010
def test_getip_without_format(self):
1111

1212
configuration = openapiipify.Configuration(
13-
host = "https://api.ipify.org"
13+
host = "https://api64.ipify.org"
1414
)
1515

1616
with openapiipify.ApiClient(configuration) as api_client:
@@ -28,7 +28,7 @@ def test_getip_without_format(self):
2828
def test_getip_with_json_format(self):
2929

3030
configuration = openapiipify.Configuration(
31-
host = "https://api.ipify.org"
31+
host = "https://api64.ipify.org"
3232
)
3333

3434
with openapiipify.ApiClient(configuration) as api_client:
@@ -47,7 +47,7 @@ def test_getip_with_json_format(self):
4747
def test_getip_with_jsonp_format(self):
4848

4949
configuration = openapiipify.Configuration(
50-
host = "https://api.ipify.org"
50+
host = "https://api64.ipify.org"
5151
)
5252

5353
with openapiipify.ApiClient(configuration) as api_client:
@@ -67,7 +67,7 @@ def test_getip_with_jsonp_format(self):
6767
def test_getip_with_jsonp_format_and_callback_function_name(self):
6868

6969
configuration = openapiipify.Configuration(
70-
host = "https://api.ipify.org"
70+
host = "https://api64.ipify.org"
7171
)
7272

7373
with openapiipify.ApiClient(configuration) as api_client:

0 commit comments

Comments
 (0)