Skip to content

Commit c1fb97b

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 6fee5ca commit c1fb97b

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

maths/prime_check.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,12 +90,9 @@ def test_not_primes(self):
9090
unittest.main()
9191

9292

93-
94-
95-
96-
9793
def test_large_prime(self):
9894
assert is_prime(999983)
9995

96+
10097
def test_large_non_prime(self):
101-
assert not is_prime(999999)
98+
assert not is_prime(999999)

0 commit comments

Comments
 (0)