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 c1ac71a commit 0901170Copy full SHA for 0901170
test/errorshow.jl
@@ -406,6 +406,8 @@ let err_str,
406
@test occursin("MethodError: no method matching Bool()", err_str)
407
err_str = @except_str :a() MethodError
408
@test occursin("MethodError: objects of type Symbol are not callable", err_str)
409
+ err_str = @except_str missing(1) MethodError
410
+ @test occursin("MethodError: objects of type Missing are not callable", err_str)
411
err_str = @except_str EightBitType() MethodError
412
@test occursin("MethodError: no method matching $(curmod_prefix)EightBitType()", err_str)
413
err_str = @except_str i() MethodError
0 commit comments