Skip to content

Commit

Permalink
Remove extraneous asserts
Browse files Browse the repository at this point in the history
  • Loading branch information
nfcampos committed Sep 10, 2024
1 parent 3886b76 commit edc0fd0
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions libs/scheduler-kafka/tests/test_subgraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,6 @@ async def test_subgraph_w_interrupt(

# check interrupted state
state = await graph.aget_state(config)
assert len(orch_msgs) == 6
assert len(exec_msgs) == 5
assert state.next == ("weather_graph",)
assert state.values == {
"messages": [HumanMessage(id=AnyStr(), content="what's the weather in sf")],
Expand Down Expand Up @@ -427,8 +425,6 @@ async def test_subgraph_w_interrupt(

# check final state
state = await graph.aget_state(config)
assert len(orch_msgs) == 4
assert len(exec_msgs) == 3
assert state.next == ()
assert state.values == {
"messages": [
Expand Down

0 comments on commit edc0fd0

Please sign in to comment.