diff --git a/Project.toml b/Project.toml index 7be64a4c..6863f325 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "FractionalDiffEq" uuid = "c7492dd8-6170-483b-af64-cefb6c377d9a" authors = ["Qingyu Qu "] -version = "0.2.4" +version = "0.2.5" [deps] ApproxFun = "28f2ccd6-bb30-5033-b560-165f7b14dc2f" diff --git a/test/auxillary.jl b/test/auxillary.jl index 25364ece..1fe8a5a5 100644 --- a/test/auxillary.jl +++ b/test/auxillary.jl @@ -126,7 +126,7 @@ end h = 0.5; t = collect(0:h:1) dodefun(t)=0 dodeprob = DODEProblem([1, 0.1], [x->6*x*(1-x), 0], (0, 1), dodefun, 1, t) - dodesol = solve(prob, h, DOMatrixDiscrete()) + dodesol = solve(dodeprob, h, DOMatrixDiscrete()) @test_nowarn show(dodeprob) @test_nowarn show(dodesol)