jorisvandenbossche commented on a change in pull request #8244:
URL: https://github.com/apache/arrow/pull/8244#discussion_r497508500
##########
File path: python/pyarrow/tests/test_feather.py
##########
@@ -128,19 +128,22 @@ def test_dataset(version):
num_values = (100, 100)
Review comment:
I think the `@pytest.mark.pandas` can be removed here as well?
##########
File path: python/pyarrow/tests/test_feather.py
##########
@@ -128,19 +128,22 @@ def test_dataset(version):
num_values = (100, 100)
num_files = 5
paths = [random_path() for i in range(num_files)]
- df = pd.DataFrame(np.random.randn(*num_values),
- columns=['col_' + str(i)
- for i in range(num_values[1])])
+ table = pa.Table.from_arrays(
Review comment:
In principle we could also use `pa.table(..` here instead (a bit more
ergonomic to use)
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]