We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c69a4a7 commit 7628740Copy full SHA for 7628740
lib/SCCNonlinearSolve/test/core_tests.jl
@@ -5,6 +5,7 @@ include("../../../common/common_rootfind_testing.jl")
5
end
6
7
@testitem "Manual SCC" setup=[CoreRootfindTesting] tags=[:core] begin
8
+ using NonlinearSolve
9
function f(du, u, p)
10
du[1] = cos(u[2]) - u[1]
11
du[2] = sin(u[1] + u[2]) + u[2]
lib/SCCNonlinearSolve/test/qa_tests.jl
@@ -12,7 +12,7 @@
12
13
14
@testitem "Explicit Imports" tags=[:core] begin
15
- using ExplicitImports, SCCNonlinearSolve
+ using ExplicitImports, SciMLBase, SCCNonlinearSolve
16
17
@test check_no_implicit_imports(
18
SCCNonlinearSolve; skip = (Base, Core, SciMLBase)
0 commit comments