Skip to content

Commit f08da85

Browse files
committed
>> (820) : added comment in test_dump()
1 parent 5f73eae commit f08da85

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

larray/tests/test_array.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4128,12 +4128,13 @@ def test_to_excel_xlwings(tmpdir):
41284128

41294129

41304130
def test_dump():
4131+
# narrow format
41314132
res = list(ndtest(3).dump(wide=False, value_name='data'))
41324133
assert res == [['a', 'data'],
41334134
['a0', 0],
41344135
['a1', 1],
41354136
['a2', 2]]
4136-
4137+
# array with an anonymous axis and a wildcard axis
41374138
arr = ndtest((Axis('a0,a1'), Axis(2, 'b')))
41384139
res = arr.dump()
41394140
assert res == [['b', 0, 1],

0 commit comments

Comments
 (0)