Skip to content

Commit

Permalink
Adjust integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
jhamon committed Jul 18, 2024
1 parent 1378390 commit 24e2f3e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def test_create_index(self, client, create_sl_index_params):
assert desc.name == name
assert desc.dimension == dimension
assert desc.metric == "cosine"
assert desc.deletion_protection is "disabled" # default value
assert desc.deletion_protection == "disabled" # default value

@pytest.mark.parametrize("metric", ["cosine", "euclidean", "dotproduct"])
def test_create_index_with_metric(self, client, create_sl_index_params, metric):
Expand Down

0 comments on commit 24e2f3e

Please sign in to comment.