Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
Signed-off-by: Bugen Zhao <[email protected]>
  • Loading branch information
BugenZhao committed Mar 20, 2023
1 parent 0178b11 commit d214e27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/meta/src/stream/test_scale.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ mod tests {
for parallel_unit_num in simulated_parallel_unit_nums(None, None) {
let (actor_mapping, _) = generate_actor_mapping(parallel_unit_num);

let actor_to_parallel_unit_map = (0..parallel_unit_num)
let actor_to_parallel_unit_map: HashMap<_, _> = (0..parallel_unit_num)
.map(|i| (i as ActorId, i as ParallelUnitId))
.collect();
let parallel_unit_mapping = actor_mapping.to_parallel_unit(&actor_to_parallel_unit_map);
Expand Down

0 comments on commit d214e27

Please sign in to comment.