Skip to content

Commit 115c793

Browse files
test: fix usage of DelayParentScope in JumpSystem tests
1 parent fd64e19 commit 115c793

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/jumpsystem.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -381,12 +381,12 @@ let
381381
@variables x1(t) x2(t) x3(t) x4(t) x5(t)
382382
x2 = ParentScope(x2)
383383
x3 = ParentScope(ParentScope(x3))
384-
x4 = DelayParentScope(x4, 2)
384+
x4 = DelayParentScope(x4)
385385
x5 = GlobalScope(x5)
386386
@parameters p1 p2 p3 p4 p5
387387
p2 = ParentScope(p2)
388388
p3 = ParentScope(ParentScope(p3))
389-
p4 = DelayParentScope(p4, 2)
389+
p4 = DelayParentScope(p4)
390390
p5 = GlobalScope(p5)
391391

392392
j1 = ConstantRateJump(p1, [x1 ~ x1 + 1])

0 commit comments

Comments
 (0)