Skip to content

Commit 68ccc09

Browse files
author
Alexander Ororbia
committed
minor cleanup of unit-test for phasor
1 parent f6d56a4 commit 68ccc09

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/components/input_encoders/test_phasorCell.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ def test_phasorCell1():
2626

2727
advance_process = (Process()
2828
>> a.advance_state)
29-
ctx.wrap_and_add_command(advance_process.pure, name="run")
29+
ctx.wrap_and_add_command(jit(advance_process.pure), name="run")
3030

3131
reset_process = (Process()
3232
>> a.reset)
33-
ctx.wrap_and_add_command(reset_process.pure, name="reset")
33+
ctx.wrap_and_add_command(jit(reset_process.pure), name="reset")
3434

3535
## set up non-compiled utility commands
3636
@Context.dynamicCommand

0 commit comments

Comments
 (0)