We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07ff885 commit ce8fe70Copy full SHA for ce8fe70
hypothesis-python/tests/cover/test_unittest.py
@@ -51,10 +51,11 @@ def test(self):
51
52
SUBTEST_SUITE = """
53
import unittest
54
-from hypothesis import given, strategies as st
+from hypothesis import given, settings, strategies as st
55
56
class MyTest(unittest.TestCase):
57
@given(s=st.text())
58
+ @settings(deadline=None)
59
def test_subtest(self, s):
60
with self.subTest(text=s):
61
self.assertIsInstance(s, str)
0 commit comments