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 341ba17 commit 9f60a37Copy full SHA for 9f60a37
test/test_manual.py
@@ -20,7 +20,10 @@
20
class TestManualApi(IsolatedAsyncioTestCase):
21
22
def setUp(self):
23
- self.client = manticoresearch.ApiClient(self.settings['configuration'])
+ configuration = manticoresearch.Configuration(
24
+ host = "http://localhost:9408"
25
+ )
26
+ self.client = manticoresearch.ApiClient(configuration)
27
28
def tearDown(self):
29
pass
0 commit comments