Skip to content

Commit d364f1b

Browse files
ci: fix flaky aiohttp test failure (#11698)
Co-authored-by: erikayasuda <[email protected]>
1 parent b87c4dd commit d364f1b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tests/contrib/aiohttp/test_request.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
from ddtrace import config
66
from ddtrace.contrib.aiohttp.middlewares import trace_app
7-
from ddtrace.contrib.aiohttp.patch import patch
8-
from ddtrace.contrib.aiohttp.patch import unpatch
97
from tests.utils import assert_is_measured
108
from tests.utils import override_global_config
119

@@ -76,9 +74,7 @@ async def test_user_specified_service(tracer, aiohttp_client, loop):
7674
When a service name is specified by the user
7775
The aiohttp integration should use it as the service name
7876
"""
79-
unpatch()
8077
with override_global_config(dict(service="mysvc")):
81-
patch()
8278
app = setup_app()
8379
trace_app(app, tracer)
8480
client = await aiohttp_client(app)

0 commit comments

Comments
 (0)