From c38d80cab21ed9077ab196b7615de5c667e4881a Mon Sep 17 00:00:00 2001 From: Lei Xu Date: Wed, 19 Apr 2023 14:26:07 -0700 Subject: [PATCH] remove print --- python/tests/test_db.py | 1 - 1 file changed, 1 deletion(-) diff --git a/python/tests/test_db.py b/python/tests/test_db.py index c6f7583b..207dd430 100644 --- a/python/tests/test_db.py +++ b/python/tests/test_db.py @@ -52,7 +52,6 @@ def test_ingest_pd(tmp_path): data = pd.DataFrame({"vector": [[3.1, 4.1], [5.9, 26.5]], "item": ["foo", "bar"], "price": [10.0, 20.0]}) table = db.create_table("test", data=data) rs = table.search([100, 100]).limit(1).to_df() - print(rs) assert len(rs) == 1 assert rs["item"].iloc[0] == "bar"