We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f73eae commit f08da85Copy full SHA for f08da85
larray/tests/test_array.py
@@ -4128,12 +4128,13 @@ def test_to_excel_xlwings(tmpdir):
4128
4129
4130
def test_dump():
4131
+ # narrow format
4132
res = list(ndtest(3).dump(wide=False, value_name='data'))
4133
assert res == [['a', 'data'],
4134
['a0', 0],
4135
['a1', 1],
4136
['a2', 2]]
-
4137
+ # array with an anonymous axis and a wildcard axis
4138
arr = ndtest((Axis('a0,a1'), Axis(2, 'b')))
4139
res = arr.dump()
4140
assert res == [['b', 0, 1],
0 commit comments