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 0aea11d commit de73685Copy full SHA for de73685
test/runtests.jl
@@ -825,9 +825,9 @@ end
825
end
826
827
@testset "juliaraw" begin
828
- xo = pyjlraw(nothing)
829
- @test @pyv `repr($xo) == "<jl nothing>"`::Bool
830
- @test @pyv `str($xo) == "nothing"`::Bool
+ xo = pyjlraw(missing)
+ @test @pyv `repr($xo) == "<jl missing>"`::Bool
+ @test @pyv `str($xo) == "missing"`::Bool
831
x = Struct1("foo", 12)
832
xo = pyjlraw(x)
833
@test (@pyv `$xo.x`::Any) === x.x
0 commit comments