We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9693f0f commit 14e4058Copy full SHA for 14e4058
1 file changed
samples/openapi3/client/petstore/python-aiohttp/tests/test_api_client.py
@@ -30,7 +30,7 @@ async def test_ignore_operation_servers(self):
30
# operation servers should be used
31
_, url, *_ = user_api_instance._create_user_serialize(**params_to_serialize)
32
self.assertEqual(client.configuration.host, HOST)
33
- self.assertEqual(url, 'http://petstore.swagger.io/v2/user')
+ self.assertEqual(url, 'http://localhost/v2/user')
34
35
# operation servers should be ignored
36
_, url_ignore, *_ = user_api_instance_ignore._create_user_serialize(**params_to_serialize)
0 commit comments