Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions unittests/model_tests/neuron/test_synaptic_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def test_write_data_spec() -> None:
writer.add_edge(edge, part_id)
splitter_partitioner()
allocator = ZonedRoutingInfoAllocator()
writer.set_routing_infos(allocator.allocate([]))
writer.set_routing_infos(allocator.allocate())

post_vertex = next(iter(post_pop._vertex.machine_vertices))
post_vertex_slice = post_vertex.vertex_slice
Expand Down Expand Up @@ -466,7 +466,7 @@ def test_pop_based_master_pop_table_standard(
writer.add_edge(edge, part_id)
splitter_partitioner()
allocator = ZonedRoutingInfoAllocator()
writer.set_routing_infos(allocator.allocate([]))
writer.set_routing_infos(allocator.allocate())

post_mac_vertex = next(iter(post_pop._vertex.machine_vertices))
post_vertex_slice = post_mac_vertex.vertex_slice
Expand Down
Loading