Skip to content

Commit

Permalink
appease new clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
matklad committed Jul 1, 2022
1 parent 8e32b8f commit 8a74207
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion opentelemetry-dynatrace/tests/http_test.rs
Expand Up @@ -130,7 +130,7 @@ mod test {
.expect("sender error while shutting down http server");

// Reap the task handle to ensure that the server did indeed shut down.
let _ = server_handle.await.expect("http server yielded an error");
server_handle.await.expect("http server yielded an error");

let mut metric_lines: Vec<&str> = body.lines().collect();
metric_lines.sort_unstable();
Expand Down
2 changes: 1 addition & 1 deletion opentelemetry-sdk/src/metrics/aggregators/ddsketch.rs
Expand Up @@ -851,7 +851,7 @@ mod tests {
&DdSketchConfig::new(TEST_ALPHA, TEST_MAX_BINS, TEST_KEY_EPSILON),
NumberKind::F64,
));
let _ = ddsketch
ddsketch
.synchronized_move(&moved_ddsketch, &descriptor)
.expect("Fail to sync move");
let moved_ddsketch = moved_ddsketch
Expand Down

0 comments on commit 8a74207

Please sign in to comment.