diff --git a/test/MOL_1D_Linear_Diffusion.jl b/test/MOL_1D_Linear_Diffusion.jl index 948a4816a..ed79289cc 100644 --- a/test/MOL_1D_Linear_Diffusion.jl +++ b/test/MOL_1D_Linear_Diffusion.jl @@ -307,13 +307,13 @@ end t = sol.t # Plot and save results - using Plots - plot() - for i in 1:4 - plot!(x,Array(prob.extrapolation[1](t[i])*sol.u[i])) - scatter!(x, u_exact(x, t[i])) - end - savefig("MOL_1D_Linear_Diffusion_Test05.png") + # using Plots + # plot() + # for i in 1:4 + # plot!(x,Array(prob.extrapolation[1](t[i])*sol.u[i])) + # scatter!(x, u_exact(x, t[i])) + # end + # savefig("MOL_1D_Linear_Diffusion_Test05.png") # Test against exact solution for i in 1:size(t,1)