From 76bfa5a001d2465b26c8e28e03b7ee823b361d9c Mon Sep 17 00:00:00 2001 From: Diego Hurtado Date: Thu, 23 Apr 2020 17:25:23 -0600 Subject: [PATCH] Add lint fixes --- .../tests/test_instrumentor.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/opentelemetry-auto-instrumentation/tests/test_instrumentor.py b/opentelemetry-auto-instrumentation/tests/test_instrumentor.py index 12f16fd6722..c938d7ad668 100644 --- a/opentelemetry-auto-instrumentation/tests/test_instrumentor.py +++ b/opentelemetry-auto-instrumentation/tests/test_instrumentor.py @@ -73,9 +73,7 @@ def test_run_non_empty( auto_instrumentation.run() self.assertEqual( environ["PYTHONPATH"], - pathsep.join( - [self.auto_instrumentation_path, "abc"] - ), + pathsep.join([self.auto_instrumentation_path, "abc"]), ) @patch.dict( @@ -91,7 +89,5 @@ def test_run_after_path( auto_instrumentation.run() self.assertEqual( environ["PYTHONPATH"], - pathsep.join( - [self.auto_instrumentation_path, "abc"] - ), + pathsep.join([self.auto_instrumentation_path, "abc"]), )