Skip to content

Commit

Permalink
Fix a merge issue with min_max.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
thebracket committed Nov 16, 2023
1 parent affde61 commit 56286f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rust/lts_client/src/collector/collation/min_max.rs
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ impl<
values.sort();
let length = values.len();
let median = if length == 0 { T::zero() } else {
values[length/2]
median(&values)
};

Self { max, min, avg: median(stats): median }
Self { max, min, avg: median }
}
}

Expand Down

0 comments on commit 56286f6

Please sign in to comment.