Skip to content

Commit

Permalink
blacklist_* ➜ exclude_*
Browse files Browse the repository at this point in the history
  • Loading branch information
wsanchez committed Oct 2, 2024
1 parent a2b8ccb commit 56c1c3c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/deploy/aws/test/test_ecs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1531,8 +1531,8 @@ def test_environment_get(self, cluster: str, service: str) -> None:
tuples(
text( # updates/keys
alphabet=characters(
blacklist_categories=("Cs",), # type:ignore[arg-type]
blacklist_characters="=",
exclude_categories=("Cs",), # type:ignore[arg-type]
exclude_characters="=",
),
),
text(), # updates/values
Expand Down
4 changes: 2 additions & 2 deletions src/deploy/ext/test/test_click.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,15 +59,15 @@ class ReadConfigTests(TestCase):
alphabet=characters(
exclude_categories=configExcludeCategories # type:ignore[arg-type]
+ ("Zs",), # Spaces
blacklist_characters="]",
exclude_characters="]",
),
),
dictionaries( # config keys
text(
min_size=1,
alphabet=characters(
exclude_categories=configExcludeCategories, # type:ignore[arg-type]
blacklist_characters="=",
exclude_characters="=",
),
),
text( # config values
Expand Down

0 comments on commit 56c1c3c

Please sign in to comment.