Skip to content

Commit c33feee

Browse files
committed
fmt
Signed-off-by: gruebel <[email protected]>
1 parent bd0e244 commit c33feee

File tree

1 file changed

+3
-3
lines changed
  • providers/openfeature-provider-flagd/tests/e2e

1 file changed

+3
-3
lines changed

providers/openfeature-provider-flagd/tests/e2e/steps.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -594,9 +594,9 @@ def assert_handlers(
594594

595595
logging.info(f"asserting num({event_type}) >= {num_events}: {handles}")
596596
actual_num_events = sum([h["type"] == event_type for h in handles])
597-
assert (
598-
num_events <= actual_num_events
599-
), f"Expected {num_events} but got {actual_num_events}: {handles}"
597+
assert num_events <= actual_num_events, (
598+
f"Expected {num_events} but got {actual_num_events}: {handles}"
599+
)
600600

601601

602602
@then(

0 commit comments

Comments
 (0)