Skip to content

Commit aa31e54

Browse files
committed
rerun
1 parent d81d4f2 commit aa31e54

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

aws-opentelemetry-distro/tests/amazon/opentelemetry/distro/test_aws_opentelementry_configurator.py

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -379,7 +379,7 @@ def test_customize_span_exporter_sigv4(self):
379379
OTLPSpanExporter(),
380380
OTLPSpanExporter,
381381
AwsAuthSession,
382-
Compression.NoCompression,
382+
Compression.NoCompression,
383383
)
384384

385385
for config in bad_configs:
@@ -488,7 +488,9 @@ def test_customize_logs_exporter_sigv4(self):
488488
config, _customize_logs_exporter, OTLPLogExporter(), OTLPLogExporter, Session, Compression.NoCompression
489489
)
490490

491-
self.assertIsInstance(_customize_logs_exporter(OTLPGrpcLogExporter(), Resource.get_empty()), OTLPGrpcLogExporter)
491+
self.assertIsInstance(
492+
_customize_logs_exporter(OTLPGrpcLogExporter(), Resource.get_empty()), OTLPGrpcLogExporter
493+
)
492494

493495
def test_init_logging(self):
494496
captured_exporter = None
@@ -662,7 +664,13 @@ def test_customize_metric_exporter(self):
662664
os.environ.pop("OTEL_METRIC_EXPORT_INTERVAL", None)
663665

664666
def customize_exporter_test(
665-
self, config, executor, default_exporter, expected_exporter_type, expected_session, expected_compression,
667+
self,
668+
config,
669+
executor,
670+
default_exporter,
671+
expected_exporter_type,
672+
expected_session,
673+
expected_compression,
666674
):
667675
for key, value in config.items():
668676
os.environ[key] = value

0 commit comments

Comments
 (0)