Skip to content

Commit

Permalink
🚨 run black -S tests
Browse files Browse the repository at this point in the history
Signed-off-by: rjdbcm <[email protected]>
  • Loading branch information
rjdbcm committed Apr 26, 2024
1 parent eaac863 commit fdd8fe2
Showing 1 changed file with 14 additions and 3 deletions.
17 changes: 14 additions & 3 deletions tests/test_ozi_new.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,11 @@
fullmatch=True,
),
'author': st.lists(
st.text(st.characters(exclude_categories=['C'], exclude_characters=['\\']), min_size=1, max_size=16),
st.text(
st.characters(exclude_categories=['C'], exclude_characters=['\\']),
min_size=1,
max_size=16,
),
min_size=1,
max_size=8,
unique=True,
Expand All @@ -51,7 +55,11 @@
max_size=8,
),
'maintainer': st.lists(
st.text(st.characters(exclude_categories=['C'], exclude_characters=['\\']), min_size=1, max_size=16),
st.text(
st.characters(exclude_categories=['C'], exclude_characters=['\\']),
min_size=1,
max_size=16,
),
min_size=1,
max_size=8,
unique=True,
Expand All @@ -65,7 +73,10 @@
st.just('A, https://oziproject.dev'),
max_size=1,
),
'summary': st.text(st.characters(exclude_categories=['C'], exclude_characters=['\\']), max_size=255),
'summary': st.text(
st.characters(exclude_categories=['C'], exclude_characters=['\\']),
max_size=255,
),
'copyright_head': st.text(
st.characters(exclude_categories=['C'], exclude_characters=['\\']),
max_size=255,
Expand Down

0 comments on commit fdd8fe2

Please sign in to comment.