We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd0e244 commit c33feeeCopy full SHA for c33feee
providers/openfeature-provider-flagd/tests/e2e/steps.py
@@ -594,9 +594,9 @@ def assert_handlers(
594
595
logging.info(f"asserting num({event_type}) >= {num_events}: {handles}")
596
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}"
+ assert num_events <= actual_num_events, (
+ f"Expected {num_events} but got {actual_num_events}: {handles}"
+ )
600
601
602
@then(
0 commit comments