Skip to content

Commit

Permalink
avoid underscore numeral syntax
Browse files Browse the repository at this point in the history
Numerals like 1_000_000 are supported in Python 3.6, but we're currently
testing as far back as 3.5.
  • Loading branch information
oconnor663 committed Mar 4, 2020
1 parent d67cef4 commit 13deeaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_blake3.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def test_xof():


def test_multithreading():
b = make_input(1_000_000)
b = make_input(10 ** 6)
expected = blake3(b).digest()
assert expected == blake3(b, multithreading=True).digest()
incremental = blake3()
Expand Down

0 comments on commit 13deeaf

Please sign in to comment.