Skip to content

Commit 4954b0d

Browse files
committed
fix: lint clippy
1 parent afb4197 commit 4954b0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opentelemetry-sdk/src/trace/span_processor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1129,7 +1129,7 @@ mod tests {
11291129
let processor = BatchSpanProcessor::new(exporter, config);
11301130

11311131
let test_span = create_test_span("test_span");
1132-
processor.on_end(&mut &mut FinishedSpan::new(test_span.clone()));
1132+
processor.on_end(&mut FinishedSpan::new(test_span.clone()));
11331133

11341134
// Wait for flush interval to ensure the span is processed
11351135
std::thread::sleep(Duration::from_secs(6));

0 commit comments

Comments
 (0)