Skip to content

Commit bc8efeb

Browse files
deleted leftover - no longer plain nothing
1 parent 3583096 commit bc8efeb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/convert.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ using DataTypesBasic
55
@test_throws AssertionError convert(Const, [1,2,3])
66

77
@test convert(Vector, Identity("hello")) == ["hello"]
8-
@test convert(Vector, nothing) == []
98
@test convert(Vector, Const(43)) == []
109
@test convert(Vector, @ContextManager cont -> cont(2)) == [2]
10+
@test_throws MethodError convert(Vector, nothing)
1111

1212
@test convert(Identity, @ContextManager cont -> cont(2)) == Identity(2)
1313
@test_throws MethodError convert(Identity, [1,2,3])

0 commit comments

Comments
 (0)