Skip to content

Commit

Permalink
Remove unused max
Browse files Browse the repository at this point in the history
  • Loading branch information
ktnlvr committed Jun 3, 2023
1 parent 9691a3c commit eba5c7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_random.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ def test_randint():
for i in range(10000):
a = random.randint(0, i)
b = random.randint(a+1, (i+1)**2)
n = random.randint(min(a, b), max(a, b))
n = random.randint(a, b)
assert a <= n <= b

0 comments on commit eba5c7e

Please sign in to comment.