Skip to content

Commit 9a75b85

Browse files
committed
Update test_fuzzing.py
ignore list should never be empty
1 parent 7cf01e5 commit 9a75b85

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)