Skip to content

Commit 7237341

Browse files
fix: fix parameter not passed to system in error handling test
1 parent 5e64709 commit 7237341

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/error_handling.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function OverdefinedConstantVoltage(; name, V = 1.0, I = 1.0)
2727
# Overdefine p.i and n.i
2828
n.i ~ I
2929
p.i ~ I]
30-
System(eqs, t, [], [V], systems = [p, n], defaults = Dict(V => val, I => val2),
30+
System(eqs, t, [], [V, I], systems = [p, n], defaults = Dict(V => val, I => val2),
3131
name = name)
3232
end
3333

0 commit comments

Comments
 (0)