Skip to content

Commit 3915afe

Browse files
authored
Update test_fuzzing.py
ignore list should never be empty
1 parent c128ed5 commit 3915afe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_fuzzing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ def opt_str():
108108
patch=opt_str(),
109109
vcs=st.none() | vcs_enum,
110110
src=opt_str(),
111-
ignore=st.one_of(ignore_list, st.just([])),
111+
ignore=ignore_list,
112112
)
113113

114114
remotes_seq = st.none() | st.lists(remote_entry, min_size=1, max_size=4)

0 commit comments

Comments
 (0)