Skip to content

Commit a174890

Browse files
committed
chore: fix tests
1 parent c948ac8 commit a174890

File tree

1 file changed

+2
-2
lines changed
  • opentelemetry-otlp/src/exporter/tonic

1 file changed

+2
-2
lines changed

opentelemetry-otlp/src/exporter/tonic/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ mod tests {
513513
run_env_test(
514514
vec![
515515
(crate::OTEL_EXPORTER_OTLP_TRACES_COMPRESSION, "zstd"),
516-
(super::OTEL_EXPORTER_OTLP_COMPRESSION, "gzip"),
516+
(crate::OTEL_EXPORTER_OTLP_COMPRESSION, "gzip"),
517517
],
518518
|| {
519519
let builder = TonicExporterBuilder::default();
@@ -532,7 +532,7 @@ mod tests {
532532
run_env_test(
533533
vec![
534534
(crate::OTEL_EXPORTER_OTLP_TRACES_COMPRESSION, "gzip"),
535-
(super::OTEL_EXPORTER_OTLP_COMPRESSION, "gzip"),
535+
(crate::OTEL_EXPORTER_OTLP_COMPRESSION, "gzip"),
536536
],
537537
|| {
538538
let builder = TonicExporterBuilder::default().with_compression(Compression::Zstd);

0 commit comments

Comments
 (0)