Skip to content

Commit

Permalink
address comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt711 committed Jun 11, 2024
1 parent 554f4fe commit 4b9d91a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/cudf/cudf/pylibcudf_tests/test_lists.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def test_concatenate_rows():

expect = pa.array([pair[0] + pair[1] for pair in zip(*test_data)])

assert_column_eq(res, expect)
assert_column_eq(expect, res)


@pytest.mark.parametrize(
Expand All @@ -43,4 +43,4 @@ def test_concatenate_list_elements(test_data, drop_na, expected):

expect = pa.array(expected)

assert_column_eq(res, expect)
assert_column_eq(expect, res)

0 comments on commit 4b9d91a

Please sign in to comment.