Skip to content

Commit de73685

Browse files
author
Christopher Doris
committed
fix for julia 1.0
1 parent 0aea11d commit de73685

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/runtests.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -825,9 +825,9 @@ end
825825
end
826826

827827
@testset "juliaraw" begin
828-
xo = pyjlraw(nothing)
829-
@test @pyv `repr($xo) == "<jl nothing>"`::Bool
830-
@test @pyv `str($xo) == "nothing"`::Bool
828+
xo = pyjlraw(missing)
829+
@test @pyv `repr($xo) == "<jl missing>"`::Bool
830+
@test @pyv `str($xo) == "missing"`::Bool
831831
x = Struct1("foo", 12)
832832
xo = pyjlraw(x)
833833
@test (@pyv `$xo.x`::Any) === x.x

0 commit comments

Comments
 (0)