From e6ff146c7af1a915f42f40a5f47b8d8db29ed1aa Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Thu, 24 Oct 2024 10:47:21 -0400 Subject: [PATCH] s64 --- tests/test_datalayer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_datalayer.py b/tests/test_datalayer.py index 1ca216ed..2e6d4575 100644 --- a/tests/test_datalayer.py +++ b/tests/test_datalayer.py @@ -28,6 +28,6 @@ def test_just_insert_a_bunch() -> None: total_time = 0.0 for i in range(100000): start = time.monotonic() - merkle_blob.insert(uint64(i), uint64(i), HASH) + merkle_blob.insert(int64(i), int64(i), HASH) end = time.monotonic() total_time += end - start