From efe43d38ab84d7540748c001b6325c5e903e3559 Mon Sep 17 00:00:00 2001 From: Caleb Hattingh Date: Sun, 26 Mar 2023 23:27:14 +1000 Subject: [PATCH] Update tests/tantivy_test.py Co-authored-by: Harrison Burt <57491488+ChillFish8@users.noreply.github.com> --- tests/tantivy_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tantivy_test.py b/tests/tantivy_test.py index 6a5246d..e833fa1 100644 --- a/tests/tantivy_test.py +++ b/tests/tantivy_test.py @@ -543,7 +543,7 @@ class TestJsonField: BytesIO(b"abc").getbuffer(), ]) def test_bytes(bytes_kwarg, bytes_payload): - schema = SchemaBuilder().add_bytes_field("embedding",).build() + schema = SchemaBuilder().add_bytes_field("embedding").build() index = Index(schema) writer = index.writer()