Skip to content

Commit

Permalink
fix: str-len
Browse files Browse the repository at this point in the history
  • Loading branch information
cunla committed Jan 8, 2025
1 parent e9040b9 commit 8b8bf13
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/fakeredis/test/test_hypothesis/test_string.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@
)

optional_bitcount_range = st.just(()) | st.tuples(int_as_bytes, int_as_bytes)
# todo: Should be addressed
# str_len = st.integers(min_value=-3, max_value=3) | st.integers(
# min_value=-2147483647, max_value=2147483648
# )
str_len = st.integers(min_value=-3, max_value=3) | st.integers(
min_value=-2147483647, max_value=2147483648
min_value=-3000, max_value=3000
)

string_commands = (
Expand Down

0 comments on commit 8b8bf13

Please sign in to comment.