File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,12 @@ import .FakeTerminals.FakeTerminal
160160
161161 dep8_path = git_init_package (tmp, joinpath (" packages" , " Dep8" ))
162162 dep8_srcfile = joinpath (dep8_path, " src" , " Dep8.jl" )
163- change_dep8 () = write (dep8_srcfile, read (dep8_srcfile, String) * " #" ) # Modify the source to ensure it is recompiled
163+ function change_dep8 ()
164+ # Modify the source to ensure it is recompiled
165+ write (dep8_srcfile, read (dep8_srcfile, String) * " #" )
166+ @info " updated Dep8.jl source file:" dep8_srcfile
167+ println (read (dep8_srcfile, String))
168+ end
164169 @testset " delayed precompilation with do-syntax" begin
165170 iob = IOBuffer ()
166171 # Test that operations inside Pkg.precompile() do block don't trigger auto-precompilation
You can’t perform that action at this time.
0 commit comments