Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
taegyunkim committed May 29, 2024
1 parent 002b824 commit 3971f7a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions profiling/src/internal/profile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -748,9 +748,9 @@ mod api_tests {
> = HashMap::new();
for (timestamp, sample) in samples {
add_sample(
&timestamp,
&sample,
&expected_sample_types,
timestamp,
sample,
expected_sample_types,
&mut expected_profile,
&mut samples_with_timestamps,
&mut samples_without_timestamps,
Expand Down Expand Up @@ -926,9 +926,9 @@ mod api_tests {
match operation {
Function::AddSample(timestamp, sample) => {
add_sample(
&timestamp,
&sample,
&sample_types,
timestamp,
sample,
sample_types,
&mut profile,
&mut samples_with_timestamps,
&mut samples_without_timestamps,
Expand Down

0 comments on commit 3971f7a

Please sign in to comment.