8000 test_numbertheory: slightly nicer comments · tlsfuzzer/python-ecdsa@89fe31d · GitHub
[go: up one dir, main page]

Skip to content

Commit 89fe31d

Browse files
committed
test_numbertheory: slightly nicer comments
1 parent dc381a6 commit 89fe31d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/ecdsa/test_numbertheory.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@ def test_gcd(self):
169169

170170
@unittest.skipUnless(HC_PRESENT,
171171
"Hypothesis 2.0.0 can't be made tolerant of hard to "
172-
"meet requirements (like `is_prime()`)")
172+
"meet requirements (like `is_prime()`), the test "
173+
"case times-out on it")
173174
@settings(**HYP_SETTINGS)
174175
@given(st_comp_with_com_fac())
175176
def test_gcd_with_com_factor(self, numbers):
@@ -180,7 +181,8 @@ def test_gcd_with_com_factor(self, numbers):
180181

181182
@unittest.skipUnless(HC_PRESENT,
182183
"Hypothesis 2.0.0 can't be made tolerant of hard to "
183-
"meet requirements (like `is_prime()`)")
184+
"meet requirements (like `is_prime()`), the test "
185+
"case times-out on it")
184186
@settings(**HYP_SETTINGS)
185187
@given(st_comp_no_com_fac())
186188
def test_gcd_with_uncom_factor(self, numbers):
@@ -209,7 +211,8 @@ def test_lcm_with_random_numbers(self, numbers):
209211

210212
@unittest.skipUnless(HC_PRESENT,
211213
"Hypothesis 2.0.0 can't be made tolerant of hard to "
212-
"meet requirements (like `is_prime()`)")
214+
"meet requirements (like `is_prime()`), the test "
215+
"case times-out on it")
213216
@settings(**HYP_SETTINGS)
214217
@given(st_num_square_prime())
215218
def test_square_root_mod_prime(self, vals):

0 commit comments

Comments
 (0)
0