Skip to content

Commit 6fa7d56

Browse files
Fix DiffEqBase import in jacobiansparsity.jl test
Adds explicit DiffEqBase import to resolve UndefVarError that occurs when running tests in SafeTestsets environment. The error manifested in CI at line 70 where DiffEqBase.ODEFunction is called but DiffEqBase was not directly imported, only available through transitive dependencies. Fixes CI failure in PR SciML#3912 InterfaceI test group. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 4716984 commit 6fa7d56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/jacobiansparsity.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using ModelingToolkit, SparseArrays, OrdinaryDiffEq
1+
using ModelingToolkit, SparseArrays, OrdinaryDiffEq, DiffEqBase
22

33
N = 3
44
xyd_brusselator = range(0, stop = 1, length = N)

0 commit comments

Comments
 (0)