From 2949cb2c50270dfbcb66ecc28cee1598bb116a87 Mon Sep 17 00:00:00 2001 From: Benny Halevy Date: Sun, 19 Jan 2025 19:23:37 +0200 Subject: [PATCH] topology_custom/test_tablets2: test_schema_change_during_cleanup: drop unused check function Signed-off-by: Benny Halevy (cherry picked from commit 0b88ea97985d72cd80ab337f02b4ca697b4022fb) --- test/topology_custom/test_tablets2.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/test/topology_custom/test_tablets2.py b/test/topology_custom/test_tablets2.py index 7d08a8ec54..e779c665d6 100644 --- a/test/topology_custom/test_tablets2.py +++ b/test/topology_custom/test_tablets2.py @@ -1406,14 +1406,6 @@ async def test_schema_change_during_cleanup(manager: ManagerClient): keys = range(256) await asyncio.gather(*[cql.run_async(f"INSERT INTO test.test (pk, c) VALUES ({k}, {k});") for k in keys]) - async def check(): - logger.info("Checking table") - rows = await cql.run_async("SELECT * FROM test.test;") - assert rows == expected_rows - assert len(rows) == len(keys) - for r in rows: - assert r.c == r.pk - s1_log = await manager.server_open_log(servers[0].server_id) s1_mark = await s1_log.mark()