Skip to content

Commit d9fe08a

Browse files
committed
Fixed linting issues
Signed-off-by: Venkata Shreyas Kabekkodu <[email protected]>
1 parent 51fd34b commit d9fe08a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

instrumentation/opentelemetry-instrumentation-boto/tests/test_boto_instrumentation.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,10 +282,12 @@ def test_elasticache_client(self):
282282
span = spans[0]
283283
self.assertEqual(span.attributes["endpoint"], "elasticcache")
284284
self.assertEqual(span.attributes["aws.region"], "us-west-2")
285+
285286
@mock_s3_deprecated
286287
def test_boto_with_noop_tracer_provider(self):
287288
# Set the NoOpTracerProvider explicitly
288289
from opentelemetry.trace import set_tracer_provider
290+
289291
BotoInstrumentor().uninstrument()
290292
set_tracer_provider(self.noop_tracer_provider)
291293

@@ -305,4 +307,4 @@ def test_boto_with_noop_tracer_provider(self):
305307
self.assertTrue(True)
306308
else:
307309
spans = self.memory_exporter.get_finished_spans()
308-
self.assertEqual(len(spans), 0)
310+
self.assertEqual(len(spans), 0)

0 commit comments

Comments
 (0)