Skip to content

Commit 9f60a37

Browse files
committed
Updated tests
1 parent 341ba17 commit 9f60a37

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

test/test_manual.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,10 @@
2020
class TestManualApi(IsolatedAsyncioTestCase):
2121

2222
def setUp(self):
23-
self.client = manticoresearch.ApiClient(self.settings['configuration'])
23+
configuration = manticoresearch.Configuration(
24+
host = "http://localhost:9408"
25+
)
26+
self.client = manticoresearch.ApiClient(configuration)
2427

2528
def tearDown(self):
2629
pass

0 commit comments

Comments
 (0)