Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelo-gonzalez committed Jan 6, 2025
1 parent 57ba035 commit cea603f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration-tests/src/test_loop/tests/resharding_v3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -706,12 +706,12 @@ fn test_resharding_v3_shard_shuffling_untrack_then_track() {
let num_clients = 8;
let tracked_shard_schedule = TrackedShardSchedule {
client_index: (num_clients - 1) as usize,
schedule: shard_sequence_to_schedule(tracked_shard_sequence.clone()),
schedule: shard_sequence_to_schedule(tracked_shard_sequence),
};
let params = TestReshardingParametersBuilder::default()
.shuffle_shard_assignment_for_chunk_producers(true)
.num_clients(num_clients)
.tracked_shard_schedule(Some(tracked_shard_schedule.clone()))
.tracked_shard_schedule(Some(tracked_shard_schedule))
// TODO(resharding): uncomment after fixing test_resharding_v3_state_cleanup()
//.add_loop_action(check_state_cleanup_after_resharding(tracked_shard_schedule))
.build();
Expand Down

0 comments on commit cea603f

Please sign in to comment.