From dd686c1a2d546b52743de8adce8a789321cf60a4 Mon Sep 17 00:00:00 2001 From: Fokko Driesprong Date: Tue, 21 Jan 2025 19:54:09 +0100 Subject: [PATCH] Remove `randint` --- tests/integration/test_writes/test_partitioned_writes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_writes/test_partitioned_writes.py b/tests/integration/test_writes/test_partitioned_writes.py index 807a504afd..d6ac80e834 100644 --- a/tests/integration/test_writes/test_partitioned_writes.py +++ b/tests/integration/test_writes/test_partitioned_writes.py @@ -1138,7 +1138,7 @@ def test_pyarrow_overflow(session_catalog: Catalog) -> None: except NoSuchTableError: pass - x = pa.array([random.randint(0, 999) for _ in range(30_000)]) + x = pa.array([1925 for _ in range(30_000)]) ta = pa.chunked_array([x] * 10_000) y = ["fixed_string"] * 30_000 tb = pa.chunked_array([y] * 10_000)