Skip to content

Commit

Permalink
test refactor cleanup: improve comment
Browse files Browse the repository at this point in the history
  • Loading branch information
carver committed Jun 10, 2023
1 parent c86e817 commit a799eb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/socket.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ async fn socket() {
let send = Arc::new(send);
let mut handles = vec![];

// start 50 transfers, step by two to avoid cid collisions
for i in 0..1500 {
// step up cid by two to avoid collisions
let handle = initiate_transfer(i * 2, recv_addr, recv.clone(), send_addr, send.clone()).await;
handles.push(handle.0);
handles.push(handle.1);
Expand Down

0 comments on commit a799eb4

Please sign in to comment.