Skip to content

Commit

Permalink
Black formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jhamon committed Jul 24, 2024
1 parent b57cfa2 commit ba3feeb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/integration/data/test_weird_ids.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import pytest
from .seed import weird_valid_ids, weird_invalid_ids


class TestHandlingOfWeirdIds:
def test_fetch_weird_ids(self, idx, weird_ids_namespace):
weird_ids = weird_valid_ids()
Expand Down Expand Up @@ -45,4 +46,4 @@ def test_null_character(self, idx, weird_ids_namespace):
with pytest.raises(Exception) as e:
idx.upsert(vectors=[("\0", [0.1, 0.1])], namespace=weird_ids_namespace)

assert "Vector ID must not contain null character" in str(e.value)
assert "Vector ID must not contain null character" in str(e.value)

0 comments on commit ba3feeb

Please sign in to comment.