From cf73cb4d243cf030eab0f0b22c1ce20452d33ea4 Mon Sep 17 00:00:00 2001 From: yangdx Date: Mon, 17 Nov 2025 13:13:12 +0800 Subject: [PATCH] Remove unused variables from workspace isolation test * Remove initial_ok check * Remove both_set verification --- tests/test_workspace_isolation.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tests/test_workspace_isolation.py b/tests/test_workspace_isolation.py index 788d38a3..bc765633 100644 --- a/tests/test_workspace_isolation.py +++ b/tests/test_workspace_isolation.py @@ -702,9 +702,6 @@ async def test_update_flags_workspace_isolation(): flag1_obj = await get_update_flag(test_namespace, workspace=workspace1) flag2_obj = await get_update_flag(test_namespace, workspace=workspace2) - # Initial state should be False - initial_ok = flag1_obj.value is False and flag2_obj.value is False - # Set all flags for workspace1 await set_all_update_flags(test_namespace, workspace=workspace1) @@ -731,9 +728,6 @@ async def test_update_flags_workspace_isolation(): await set_all_update_flags(test_namespace, workspace=workspace1) await set_all_update_flags(test_namespace, workspace=workspace2) - # Verify both are set - both_set = flag1_obj.value is True and flag2_obj.value is True - # Clear only workspace1 await clear_all_update_flags(test_namespace, workspace=workspace1)