Skip to content

Commit 704ef0b

Browse files
author
Ariel Ben-Yehuda
committed
fix double test
1 parent 6c49947 commit 704ef0b

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

pytests/tests/test_othermod.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from pyo3_pytests import othermod
55

6-
INTEGER32_ST = st.integers(min_value=(-(2**31)), max_value=(2**31 - 1))
6+
INTEGER32_ST = st.integers(min_value=(-(2**30)), max_value=(2**30 - 1))
77
USIZE_ST = st.integers(min_value=othermod.USIZE_MIN, max_value=othermod.USIZE_MAX)
88

99

src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
#![warn(missing_docs)]
2+
#![allow(unknown_lints)]
3+
#![allow(clippy::literal_string_with_formatting_args)]
24
#![cfg_attr(
35
feature = "nightly",
46
feature(auto_traits, negative_impls, try_trait_v2)

0 commit comments

Comments
 (0)