Skip to content

Commit

Permalink
fix unnecessary clone
Browse files Browse the repository at this point in the history
Signed-off-by: Eliza Weisman <eliza@buoyant.io>
  • Loading branch information
hawkw committed Aug 12, 2020
1 parent 795ca09 commit 6d1b96e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracing/tests/filters_dont_leak.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ fn spans_dont_leak() {
.new_span(alice.clone())
.enter(alice.clone())
.exit(alice.clone())
.drop_span(alice.clone())
.drop_span(alice)
.done()
.run_with_handle();

Expand Down

0 comments on commit 6d1b96e

Please sign in to comment.