Skip to content

Commit

Permalink
lint failure
Browse files Browse the repository at this point in the history
  • Loading branch information
choccccy committed Nov 28, 2023
1 parent 68d71b5 commit 8767e14
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/embedding/test_pgvector.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,12 @@ async def test_PGv_search_specific():

# search table with perfect match
search_string = '[beep] A single lap should be completed each time you hear this sound.'
sim_search = await vDB.search(query_string=search_string, query_page_numbers=[3], query_tags=['pacer'], conjunctive=False)
sim_search = await vDB.search(
query_string=search_string,
query_page_numbers=[3],
query_tags=['pacer'],
conjunctive=False
)
assert sim_search is not None, Exception("No results returned from perfect search")

await vDB.drop_table()

0 comments on commit 8767e14

Please sign in to comment.