Skip to content

Commit c88e7c0

Browse files
committedMar 10, 2025·
fix world age errors in tests
1 parent 92b3f0a commit c88e7c0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎test/runtests.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ testfiles = isempty(ARGS) ?
8585
@test typeof(p) in [Plot,Compose.Context]
8686
for (backend_name, backend) in backends
8787
@info string(filename,'.',backend_name)
88-
r = draw(backend(filename), p)
88+
r = Base.invokelatest(draw, backend(filename), p)
8989
@test typeof(r) in [Bool,Nothing]
9090
end
9191
end

0 commit comments

Comments
 (0)
Please sign in to comment.