Skip to content

Commit faf75ca

Browse files
author
Michael Brewer
committed
tests: removed
1 parent 9b3728b commit faf75ca

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

tests/functional/test_tracing.py

-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
import contextlib
2-
import sys
3-
from unittest.mock import Mock
42

53
import pytest
64

@@ -214,13 +212,3 @@ def handler(event, context):
214212
result = handler({}, {})
215213
assert "testresult" in result
216214
assert "testresult2" in result
217-
218-
219-
def test_aiohttp_trace_config():
220-
aiohttp_mock = Mock()
221-
sys.modules["aiohttp"] = aiohttp_mock
222-
from aws_lambda_powertools.tracing import aiohttp_trace_config
223-
224-
trace_config: Mock = aiohttp_trace_config()
225-
226-
assert trace_config._extract_mock_name() == "mock.TraceConfig()"

0 commit comments

Comments
 (0)