Skip to content

Commit 6375af4

Browse files
committed
Updated tests
1 parent ddde542 commit 6375af4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

test/test_manual.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@ async def test_manual(self):
3434
utilsApi = manticoresearch.UtilsApi(client)
3535
searchApi = manticoresearch.SearchApi(client)
3636

37-
await utilsApi.sql('query=DROP TABLE IF EXISTS movies')
38-
sleep(0.1)
37+
res = await utilsApi.sql('query=DROP TABLE IF EXISTS movies')
38+
pprint(res)
39+
sleep(1)
3940
res = await utilsApi.sql("CREATE TABLE IF NOT EXISTS movies (title text, plot text, _year integer, rating float, code multi) min_infix_len='2'")
4041
pprint("Tests finished")
4142

0 commit comments

Comments
 (0)