test: remove outdated test case

This commit is contained in:
-LAN- 2025-09-04 02:42:36 +08:00
parent 04bbf540d9
commit ed22d04ea0
No known key found for this signature in database
GPG Key ID: 6BA0D108DED011FF
1 changed files with 1 additions and 4 deletions

View File

@ -14,11 +14,8 @@ class TestGraphRuntimeState:
state = GraphRuntimeState(variable_pool=variable_pool, start_at=start_time)
# Test variable_pool property
# Test variable_pool property (read-only)
assert state.variable_pool == variable_pool
new_pool = VariablePool()
state.variable_pool = new_pool
assert state.variable_pool == new_pool
# Test start_at property
assert state.start_at == start_time