Skip to content

Commit d28f3d1

Browse files
authored
fix
1 parent cdc45f5 commit d28f3d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/examples.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1377,8 +1377,8 @@ function test_examples(
13771377
Base.eval(m, exprs)
13781378

13791379
disp && Base.eval(m, :(gui(current())))
1380-
callback === nothing || Base.invokelatest(callback, m, pkgname, i)
1381-
m.Plots.current()
1380+
callback === nothing || callback(m, pkgname, i)
1381+
Base.eval(m, :(current()))
13821382
end
13831383

13841384
# generate all plots and create a dict mapping idx --> plt

0 commit comments

Comments
 (0)