Include a traceback for non-strict event loop blocking detection (#118620)
This commit is contained in:
parent
e976db8443
commit
8f94205014
6 changed files with 30 additions and 14 deletions
|
@ -17,7 +17,7 @@ async def test_extract_frame_integration(
|
|||
integration_frame = frame.get_integration_frame()
|
||||
assert integration_frame == frame.IntegrationFrame(
|
||||
custom_integration=False,
|
||||
_frame=mock_integration_frame,
|
||||
frame=mock_integration_frame,
|
||||
integration="hue",
|
||||
module=None,
|
||||
relative_filename="homeassistant/components/hue/light.py",
|
||||
|
@ -42,7 +42,7 @@ async def test_extract_frame_resolve_module(
|
|||
|
||||
assert integration_frame == frame.IntegrationFrame(
|
||||
custom_integration=True,
|
||||
_frame=ANY,
|
||||
frame=ANY,
|
||||
integration="test_integration_frame",
|
||||
module="custom_components.test_integration_frame",
|
||||
relative_filename="custom_components/test_integration_frame/__init__.py",
|
||||
|
@ -98,7 +98,7 @@ async def test_extract_frame_integration_with_excluded_integration(
|
|||
|
||||
assert integration_frame == frame.IntegrationFrame(
|
||||
custom_integration=False,
|
||||
_frame=correct_frame,
|
||||
frame=correct_frame,
|
||||
integration="mdns",
|
||||
module=None,
|
||||
relative_filename="homeassistant/components/mdns/light.py",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue