Skip to content

Commit b64b1ef

Browse files
fix for safetests
1 parent 4bfcca5 commit b64b1ef

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

test/nonlinearsystem.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ jac_func = generate_jacobian(ns)
5252
f = @eval eval(nlsys_func)
5353

5454
# Intermediate calculations
55+
a = y - x
5556
# Define a nonlinear system
5657
eqs = [0 ~ σ*a,
5758
0 ~ x*-z)-y,

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using SafeTestsets
1+
using SafeTestsets, Test
22

33
@safetestset "Parsing Test" begin include("variable_parsing.jl") end
44
@safetestset "Differentiation Test" begin include("derivatives.jl") end
@@ -14,6 +14,6 @@ using SafeTestsets
1414
@safetestset "Domain Test" begin include("domains.jl") end
1515
@safetestset "Constraints Test" begin include("constraints.jl") end
1616
@safetestset "PDE Construction Test" begin include("pde.jl") end
17-
@safetestset "Distributed Test" begin include("distributed.jl") end
1817
@safetestset "Test Big System Usage" begin include("bigsystem.jl") end
1918
#@testset "Latexify recipes Test" begin include("latexify.jl") end
19+
@testset "Distributed Test" begin include("distributed.jl") end

0 commit comments

Comments
 (0)