Sfoglia il codice sorgente

test: remove outdated test case

tags/2.0.0-beta.1
-LAN- 1 mese fa
parent
commit
ed22d04ea0
Nessun account collegato all'indirizzo email del committer

+ 1
- 4
api/tests/unit_tests/core/workflow/entities/test_graph_runtime_state.py Vedi 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

Loading…
Annulla
Salva