File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
tests/components/playstation_network Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change 77from homeassistant import config_entries
88from homeassistant .components .playstation_network .config_flow import (
99 PSNAWPAuthenticationError ,
10- PSNAWPClientError ,
10+ PSNAWPError ,
1111 PSNAWPInvalidTokenError ,
1212 PSNAWPNotFoundError ,
13- PSNAWPServerError ,
1413)
1514from homeassistant .components .playstation_network .const import CONF_NPSSO , DOMAIN
1615from homeassistant .config_entries import SOURCE_USER
@@ -74,8 +73,7 @@ async def test_form_already_configured(
7473 [
7574 (PSNAWPNotFoundError (), "invalid_account" ),
7675 (PSNAWPAuthenticationError (), "invalid_auth" ),
77- (PSNAWPServerError (), "cannot_connect" ),
78- (PSNAWPClientError (), "cannot_connect" ),
76+ (PSNAWPError (), "cannot_connect" ),
7977 (Exception (), "unknown" ),
8078 ],
8179)
You can’t perform that action at this time.
0 commit comments