Skip to content

Commit 02c5132

Browse files
committed
oops
1 parent e40c362 commit 02c5132

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tests/test_trace.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ def test_trace():
2525

2626
for h in [pm.NpTrace]:
2727
for n in [20, 1000]:
28-
for [model.vars, model.vars + [model.vars[0]**2]]:
29-
trace = h(model.vars)
28+
for vars in [model.vars, model.vars + [model.vars[0]**2]]:
29+
trace = h(vars)
30+
3031

3132
yield check_trace, model, trace, n, step, start
3233

0 commit comments

Comments
 (0)