Skip to content

Commit a09c073

Browse files
committed
remove broken test for deprecated endpoint.
1 parent 7ec12d9 commit a09c073

1 file changed

Lines changed: 0 additions & 11 deletions

File tree

tests/btrdb_integration/test_conn.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -44,17 +44,6 @@ def test_create_stream(self, conn, tmp_collection):
4444
assert stream.uuid == uuid
4545
assert stream.name == "s"
4646

47-
def test_query(self, conn, tmp_collection):
48-
conn.create(new_uuid(), tmp_collection, tags={"name": "s1"})
49-
conn.create(new_uuid(), tmp_collection, tags={"name": "s2"})
50-
uuids = conn.query(
51-
"select name from streams where collection = $1 order by name;",
52-
[tmp_collection],
53-
)
54-
assert len(uuids) == 2
55-
assert uuids[0]["name"] == "s1"
56-
assert uuids[1]["name"] == "s2"
57-
5847
def test_list_collections(self, conn, tmp_collection):
5948
assert tmp_collection not in conn.list_collections()
6049
stream = conn.create(new_uuid(), tmp_collection, tags={"name": "s"})

0 commit comments

Comments
 (0)