File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
providers/openfeature-provider-flagd/tests/e2e Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
default_stages : [commit]
2
2
repos :
3
3
- repo : https://github.com/astral-sh/ruff-pre-commit
4
- rev : v0.8.6
4
+ rev : v0.9.0
5
5
hooks :
6
6
- id : ruff
7
7
args : [--fix]
Original file line number Diff line number Diff line change @@ -594,9 +594,9 @@ def assert_handlers(
594
594
595
595
logging .info (f"asserting num({ event_type } ) >= { num_events } : { handles } " )
596
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 } "
597
+ assert num_events <= actual_num_events , (
598
+ f"Expected { num_events } but got { actual_num_events } : { handles } "
599
+ )
600
600
601
601
602
602
@then (
You can’t perform that action at this time.
0 commit comments