Skip to content

Commit

Permalink
Remove print statements in Parquet test
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcdonald3 committed Dec 2, 2021
1 parent fe923b4 commit 7925ffd
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tests/parquet_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,8 @@ def test_multi_file(self):
test_arrs = []
elems = ak.randint(0, 2**32, adjusted_size)
per_arr = int(adjusted_size/NUMFILES)
print(elems)
for i in range(NUMFILES):
test_arrs.append(elems[(i*per_arr):(i*per_arr)+per_arr])
print(test_arrs[i])
test_arrs[i].save_parquet("pq_test" + str(i), "test-dset")

pq_arr = ak.read_parquet("pq_test*", "test-dset")
Expand Down

0 comments on commit 7925ffd

Please sign in to comment.