From 5999132287196204ae2699a32ef3a46fc507b17f Mon Sep 17 00:00:00 2001 From: Eric Eastwood Date: Tue, 2 Aug 2022 15:12:33 -0500 Subject: Fix lints --- tests/logging/test_tracing.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/logging/test_tracing.py') diff --git a/tests/logging/test_tracing.py b/tests/logging/test_tracing.py index 36736ea8c5..25a617ea6d 100644 --- a/tests/logging/test_tracing.py +++ b/tests/logging/test_tracing.py @@ -113,9 +113,9 @@ class TracingTestCase(TestCase): ) def test_side_by_side_spans(self) -> None: - with start_active_span( - "span1", tracer=self._tracer - ) as span1, start_active_span("span2", tracer=self._tracer) as span2: + with start_active_span("span1", tracer=self._tracer), start_active_span( + "span2", tracer=self._tracer + ) as span2: # We expect the last span in `with` list to be active self.assertEqual(opentelemetry.trace.get_current_span(), span2) -- cgit 1.5.1