Skip to content

Commit

Permalink
fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippPlank committed Aug 1, 2024
1 parent ee67e90 commit f367b1a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/lava/magma/compiler/test_compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,8 @@ def test_compile_proc_group_multiple_loops(self) -> None:
# exactly once. After that, the while loop should exit because the
# ChannelMap instance has not changed.
for sc in subcompilers:
sc.compile.assert_called_with({**channel_map1, **channel_map2}, None)
sc.compile.assert_called_with({**channel_map1, **channel_map2},
None)
self.assertEqual(sc.compile.call_count, 3)

def test_extract_proc_builders(self) -> None:
Expand Down

0 comments on commit f367b1a

Please sign in to comment.