Cleanup unnecessary google calendar test fixtures (#81876)

pull/81036/head^2
Allen Porter 2022-11-09 11:59:00 -08:00 committed by GitHub
parent b18c558a80
commit 0941ed076c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -301,15 +301,12 @@ async def test_missing_summary(hass, mock_events_list_items, component_setup):
async def test_update_error( async def test_update_error(
hass, hass,
component_setup, component_setup,
mock_calendars_list,
mock_events_list, mock_events_list,
test_api_calendar,
aioclient_mock, aioclient_mock,
): ):
"""Test that the calendar update handles a server error.""" """Test that the calendar update handles a server error."""
now = dt_util.now() now = dt_util.now()
mock_calendars_list({"items": [test_api_calendar]})
mock_events_list( mock_events_list(
{ {
"items": [ "items": [
@ -516,7 +513,6 @@ async def test_opaque_event(
async def test_scan_calendar_error( async def test_scan_calendar_error(
hass, hass,
component_setup, component_setup,
test_api_calendar,
mock_calendars_list, mock_calendars_list,
config_entry, config_entry,
): ):