Skip to content

Commit

Permalink
Add lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ocelotl committed Apr 24, 2020
1 parent 067e6d0 commit 2f887ea
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions opentelemetry-auto-instrumentation/tests/test_instrumentor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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"]),
)

0 comments on commit 2f887ea

Please sign in to comment.