Skip to content

Commit fbbe270

Browse files
committed
Fix linter issues.
1 parent 9809d79 commit fbbe270

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

instrumentation/opentelemetry-instrumentation-aiohttp-server/tests/test_aiohttp_server_integration.py

+8-4
Original file line numberDiff line numberDiff line change
@@ -78,10 +78,14 @@ def test_checking_instrumentor_pkg_installed():
7878
("/test-path", HTTPMethod.GET, HTTPStatus.OK),
7979
("/not-found", HTTPMethod.GET, HTTPStatus.NOT_FOUND)
8080
])
81-
async def test_status_code_instrumentation(tracer, server_fixture,
82-
aiohttp_client, url,
83-
expected_method,
84-
expected_status_code):
81+
async def test_status_code_instrumentation(
82+
tracer,
83+
server_fixture,
84+
aiohttp_client,
85+
url,
86+
expected_method,
87+
expected_status_code
88+
):
8589
_, memory_exporter = tracer
8690
server, app = server_fixture
8791

0 commit comments

Comments
 (0)