mirror of https://github.com/langgenius/dify.git
test: remove outdated test case
This commit is contained in:
parent
04bbf540d9
commit
ed22d04ea0
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue