From b73006c17947ead4beb9b438a248373fdf506833 Mon Sep 17 00:00:00 2001 From: Soenke Huster Date: Thu, 16 Jun 2022 13:54:16 +0200 Subject: [PATCH] Fix removal of RulesGermanyUpdater in tests Signed-off-by: Soenke Huster --- covidbot/tests/test_covid_data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/covidbot/tests/test_covid_data.py b/covidbot/tests/test_covid_data.py index 6ecb339..0a071fc 100644 --- a/covidbot/tests/test_covid_data.py +++ b/covidbot/tests/test_covid_data.py @@ -4,7 +4,7 @@ from covidbot.__main__ import parse_config, get_connection from covidbot.covid_data import CovidData, RKIKeyDataUpdater, RKIHistoryUpdater, \ - RulesGermanyUpdater, ICUGermanyUpdater, VaccinationGermanyUpdater, \ + ICUGermanyUpdater, VaccinationGermanyUpdater, \ RValueGermanyUpdater, HospitalisationRKIUpdater, ICUGermanyHistoryUpdater @@ -34,7 +34,7 @@ def setUpClass(cls) -> None: for updater in [RValueGermanyUpdater, VaccinationGermanyUpdater, ICUGermanyUpdater, - ICUGermanyHistoryUpdater, RulesGermanyUpdater, + ICUGermanyHistoryUpdater, HospitalisationRKIUpdater]: updater(cls.conn).update()