From 4a9d1e187f75d0f4553d5f6a479814c6e4a337bb Mon Sep 17 00:00:00 2001 From: Cyber MacGeddon Date: Tue, 21 Apr 2026 11:31:35 +0100 Subject: [PATCH] Fixing tests --- tests/unit/test_storage/test_rows_cassandra_storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit/test_storage/test_rows_cassandra_storage.py b/tests/unit/test_storage/test_rows_cassandra_storage.py index ec2748dc..852f01a1 100644 --- a/tests/unit/test_storage/test_rows_cassandra_storage.py +++ b/tests/unit/test_storage/test_rows_cassandra_storage.py @@ -442,7 +442,7 @@ class TestUnifiedTableStructure: def test_ensure_tables_idempotent(self): """Test that ensure_tables is idempotent""" processor = MagicMock() - processor.tables_initialized = {"default"} # Already initialized + processor.tables_initialized = {"test_user"} # Already initialized processor.session = MagicMock() processor.ensure_tables = Processor.ensure_tables.__get__(processor, Processor)