浏览代码

test: remove outdated test case

tags/2.0.0-beta.1
-LAN- 1 个月前
父节点
当前提交
ed22d04ea0
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 1 次插入4 次删除
  1. 1
    4
      api/tests/unit_tests/core/workflow/entities/test_graph_runtime_state.py

+ 1
- 4
api/tests/unit_tests/core/workflow/entities/test_graph_runtime_state.py 查看文件

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

正在加载...
取消
保存