Skip to content

Commit a6d3e43

Browse files
committed
TEST: make the test for issue larray-project#1187 less picky as the exact length can vary by platform
1 parent 579bf89 commit a6d3e43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

larray/tests/test_array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4209,7 +4209,7 @@ def test_from_lists():
42094209
# this is what we SHOULD return but we do not so far to avoid breaking
42104210
# backward compatibility (see issue #1187)
42114211
# assert res.axes[1].dtype == 'datetime64[ns]'
4212-
assert res.axes[1].dtype == '<U48'
4212+
assert res.axes[1].dtype.kind == 'U'
42134213

42144214

42154215
def test_to_series():

0 commit comments

Comments
 (0)