Add issue_domain to repairs (#75839)
This commit is contained in:
parent
4ffd6fc4be
commit
b0f877eca2
7 changed files with 38 additions and 0 deletions
|
@ -95,6 +95,7 @@ async def test_issues_created(hass, hass_client, hass_ws_client):
|
|||
"ignored": False,
|
||||
"is_fixable": False,
|
||||
"issue_id": "transmogrifier_deprecated",
|
||||
"issue_domain": None,
|
||||
"learn_more_url": "https://en.wiktionary.org/wiki/transmogrifier",
|
||||
"severity": "warning",
|
||||
"translation_key": "transmogrifier_deprecated",
|
||||
|
@ -108,6 +109,7 @@ async def test_issues_created(hass, hass_client, hass_ws_client):
|
|||
"ignored": False,
|
||||
"is_fixable": True,
|
||||
"issue_id": "out_of_blinker_fluid",
|
||||
"issue_domain": None,
|
||||
"learn_more_url": "https://www.youtube.com/watch?v=b9rntRxLlbU",
|
||||
"severity": "critical",
|
||||
"translation_key": "out_of_blinker_fluid",
|
||||
|
@ -121,6 +123,7 @@ async def test_issues_created(hass, hass_client, hass_ws_client):
|
|||
"ignored": False,
|
||||
"is_fixable": False,
|
||||
"issue_id": "unfixable_problem",
|
||||
"issue_domain": None,
|
||||
"learn_more_url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
|
||||
"severity": "warning",
|
||||
"translation_key": "unfixable_problem",
|
||||
|
@ -180,6 +183,7 @@ async def test_issues_created(hass, hass_client, hass_ws_client):
|
|||
"ignored": False,
|
||||
"is_fixable": False,
|
||||
"issue_id": "transmogrifier_deprecated",
|
||||
"issue_domain": None,
|
||||
"learn_more_url": "https://en.wiktionary.org/wiki/transmogrifier",
|
||||
"severity": "warning",
|
||||
"translation_key": "transmogrifier_deprecated",
|
||||
|
@ -193,6 +197,7 @@ async def test_issues_created(hass, hass_client, hass_ws_client):
|
|||
"ignored": False,
|
||||
"is_fixable": False,
|
||||
"issue_id": "unfixable_problem",
|
||||
"issue_domain": None,
|
||||
"learn_more_url": "https://www.youtube.com/watch?v=dQw4w9WgXcQ",
|
||||
"severity": "warning",
|
||||
"translation_key": "unfixable_problem",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue