Skip to content

Commit 7628740

Browse files
fix up test setup
1 parent c69a4a7 commit 7628740

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

lib/SCCNonlinearSolve/test/core_tests.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ include("../../../common/common_rootfind_testing.jl")
55
end
66

77
@testitem "Manual SCC" setup=[CoreRootfindTesting] tags=[:core] begin
8+
using NonlinearSolve
89
function f(du, u, p)
910
du[1] = cos(u[2]) - u[1]
1011
du[2] = sin(u[1] + u[2]) + u[2]

lib/SCCNonlinearSolve/test/qa_tests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
end
1313

1414
@testitem "Explicit Imports" tags=[:core] begin
15-
using ExplicitImports, SCCNonlinearSolve
15+
using ExplicitImports, SciMLBase, SCCNonlinearSolve
1616

1717
@test check_no_implicit_imports(
1818
SCCNonlinearSolve; skip = (Base, Core, SciMLBase)

0 commit comments

Comments
 (0)