Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
fix grid_topology test
Browse files Browse the repository at this point in the history
  • Loading branch information
rphmeier committed Oct 12, 2022
1 parent 5547404 commit 9df8063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/network/protocol/src/grid_topology.rs
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ mod tests {
]
.into_iter()
{
let matrix = matrix_neighbors(our_index, len);
let matrix = matrix_neighbors(our_index, len).unwrap();
let mut row_result: Vec<_> = matrix.row_neighbors.collect();
let mut column_result: Vec<_> = matrix.column_neighbors.collect();
row_result.sort();
Expand Down

0 comments on commit 9df8063

Please sign in to comment.