Skip to content

Commit

Permalink
rename set_slot to set_slots
Browse files Browse the repository at this point in the history
  • Loading branch information
Urkem committed Oct 9, 2023
1 parent d966b24 commit f685d8e
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tests/core/policies/test_flow_policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,12 +212,12 @@ def test_executor_trips_internal_circuit_breaker():
foo_flow:
steps:
- id: "1"
set_slot:
foo: bar
set_slots:
- foo: bar
next: "2"
- id: "2"
set_slot:
foo: barbar
set_slots:
- foo: barbar
next: "1"
"""
)
Expand Down Expand Up @@ -250,12 +250,12 @@ def test_policy_triggers_error_pattern_if_internal_circuit_breaker_is_tripped(
foo_flow:
steps:
- id: "1"
set_slot:
foo: bar
set_slots:
- foo: bar
next: "2"
- id: "2"
set_slot:
foo: barbar
set_slots:
- foo: barbar
next: "1"
"""
)
Expand Down

0 comments on commit f685d8e

Please sign in to comment.