Skip to content

Commit 267bf6b

Browse files
fix SciMLBase versions
1 parent d80d107 commit 267bf6b

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Project.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,8 @@ julia = "1.3"
2323

2424
[extras]
2525
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
26-
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
2726
SpecialFunctions = "276daf66-3868-5448-9aa4-cd146d93841b"
2827
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2928

3029
[targets]
31-
test = ["InteractiveUtils", "SciMLBase", "SpecialFunctions", "Test"]
30+
test = ["InteractiveUtils", "SpecialFunctions", "Test"]

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ f.jac(J,u,p,t)
6262
3.0 -1.0]
6363
@test f.jac(u, p, t) == [-1.5 -2.0; 3.0 -1.0]
6464

65-
@code_llvm DiffEqBase.has_jac(f)
65+
@code_llvm SciMLBase.has_jac(f)
6666

6767
println("Test booleans")
68-
@test DiffEqBase.has_jac(f) == true
68+
@test SciMLBase.has_jac(f) == true
6969

7070
println("Test difficult differentiable")
7171
NJ = @ode_def DiffDiff begin

0 commit comments

Comments
 (0)