Skip to content

Commit

Permalink
fix fail test after sdde fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Marmaduke Woodman committed Jun 27, 2024
1 parent 411ae11 commit f0d12d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vbjax/tests/test_loops.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def f(xs: State, x: State, t, p):
nh = 5
_, loop = vb.make_sdde(dt, nh, f, 1e-2)
_, xs = loop(xs, None)
assert xs.x.shape == z.x[:-nh].shape
assert xs.x.shape == z.x[:-(nh+1)].shape

# TODO test also w/ gfun generating pytree

Expand Down

0 comments on commit f0d12d9

Please sign in to comment.