Skip to content

Commit

Permalink
fix: rm * from group test
Browse files Browse the repository at this point in the history
  • Loading branch information
EreminAnton committed Sep 5, 2024
1 parent 4cbd21e commit a9f9d73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tests/strategies.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def group_statement_dict():
resource_strategy = group_resource()
return st.fixed_dictionaries(
mapping={
"Resource": st.one_of(resource_strategy, st.lists(resource_strategy, max_size=20), st.just("*")),
"Resource": st.one_of(resource_strategy, st.lists(resource_strategy, max_size=20)),
},
optional={
"Approvers": st.one_of(st.emails(), st.lists(st.emails(), max_size=20)),
Expand Down

0 comments on commit a9f9d73

Please sign in to comment.