Skip to content

Commit df5a2de

Browse files
committed
fixed test_larray_renamed_as_array()
1 parent 667e62b commit df5a2de

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
@@ -186,7 +186,7 @@ def test_larray_renamed_as_array():
186186
with pytest.warns(FutureWarning) as caught_warnings:
187187
arr = LArray([0, 1, 2, 3], 'a=a0..a3')
188188
assert len(caught_warnings) == 1
189-
assert caught_warnings[0].message.args[0] == "LArray() is deprecated. Use Array() instead."
189+
assert caught_warnings[0].message.args[0] == "LArray has been renamed as Array."
190190
assert caught_warnings[0].filename == __file__
191191

192192

0 commit comments

Comments
 (0)