Skip to content

Commit 990dda5

Browse files
committed
Fix API change
Change-Id: Ia329eb00148f6d2cf4cd7a69fd32bb43f9d5824f
1 parent 2053d94 commit 990dda5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/pyarrow/tests/test_convert_builtin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -493,8 +493,8 @@ def test_structarray():
493493
strs = pa.array([u'a', None, u'c'], type=pa.string())
494494
bools = pa.array([True, False, None], type=pa.bool_())
495495
arr = pa.StructArray.from_arrays(
496-
['ints', 'strs', 'bools'],
497-
[ints, strs, bools])
496+
[ints, strs, bools],
497+
['ints', 'strs', 'bools'])
498498

499499
expected = [
500500
{'ints': None, 'strs': u'a', 'bools': True},

0 commit comments

Comments
 (0)