Skip to content

Commit

Permalink
Remove randint
Browse files Browse the repository at this point in the history
  • Loading branch information
Fokko authored Jan 21, 2025
1 parent f365ce1 commit dd686c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/test_writes/test_partitioned_writes.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit dd686c1

Please sign in to comment.