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 89012df commit c94f3bcCopy full SHA for c94f3bc
tests/test_service.py
@@ -132,9 +132,9 @@ def test_server_info_without_login(self):
132
133
def _create_unauthenticated_service(self):
134
return Service(**{
135
- 'host': self.opts.get('host', 'localhost'),
136
- 'port': self.opts.get('port', 8089),
137
- 'scheme': self.opts.get('scheme', 'https')
+ 'host': self.opts.kwargs['host'],
+ 'port': self.opts.kwargs['port'],
+ 'scheme': self.opts.kwargs['scheme']
138
})
139
140
class TestSettings(testlib.SDKTestCase):
0 commit comments