Skip to content

Commit

Permalink
fix vector search by key test case bins
Browse files Browse the repository at this point in the history
  • Loading branch information
dwelch-spike committed Oct 2, 2024
1 parent 143c7fe commit a6c9cfe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/standard/aio/test_vector_client_search_by_key.py
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ def __init__(
key="rec1",
),
fields={
"bin": 2,
"bin": 1,
"vector": [1.0, 1.0, 1.0],
},
distance=0.0,
Expand Down
3 changes: 1 addition & 2 deletions tests/standard/sync/test_vector_client_search_by_key.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import numpy as np
import pytest
from aerospike_vector_search import types

Expand Down Expand Up @@ -236,7 +235,7 @@ def __init__(
key="rec1",
),
fields={
"bin": 2,
"bin": 1,
"vector": [1.0, 1.0, 1.0],
},
distance=0.0,
Expand Down

0 comments on commit a6c9cfe

Please sign in to comment.