From a09c0730da1a3a1df5afc2a0440014e6a4e16985 Mon Sep 17 00:00:00 2001 From: recontech404 Date: Tue, 30 Dec 2025 15:05:02 -0600 Subject: [PATCH] remove broken test for deprecated endpoint. --- tests/btrdb_integration/test_conn.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/tests/btrdb_integration/test_conn.py b/tests/btrdb_integration/test_conn.py index 4744f6b..dc8fd13 100644 --- a/tests/btrdb_integration/test_conn.py +++ b/tests/btrdb_integration/test_conn.py @@ -44,17 +44,6 @@ def test_create_stream(self, conn, tmp_collection): assert stream.uuid == uuid assert stream.name == "s" - def test_query(self, conn, tmp_collection): - conn.create(new_uuid(), tmp_collection, tags={"name": "s1"}) - conn.create(new_uuid(), tmp_collection, tags={"name": "s2"}) - uuids = conn.query( - "select name from streams where collection = $1 order by name;", - [tmp_collection], - ) - assert len(uuids) == 2 - assert uuids[0]["name"] == "s1" - assert uuids[1]["name"] == "s2" - def test_list_collections(self, conn, tmp_collection): assert tmp_collection not in conn.list_collections() stream = conn.create(new_uuid(), tmp_collection, tags={"name": "s"})