topology_custom/test_tablets2: test_schema_change_during_cleanup: drop unused check function

Signed-off-by: Benny Halevy <bhalevy@scylladb.com>
(cherry picked from commit 0b88ea9798)
This commit is contained in:
Benny Halevy
2025-01-19 19:23:37 +02:00
parent 6f65e0469a
commit 2949cb2c50

View File

@@ -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()