@@ -65,7 +65,6 @@ def test_expected_paths(client):
6565 assert client .location is not None
6666 assert client .location .analytics .category_rated_areas is not None
6767 assert client .duty_of_care is not None
68- assert client .duty_of_care .diseases .covid19_area_report is not None
6968 assert client .duty_of_care .diseases .covid19_report is not None
7069 assert client .airline .destinations is not None
7170
@@ -106,7 +105,6 @@ def test_expected_get_methods(client):
106105 assert client .schedule .flights .get is not None
107106 assert client .analytics .itinerary_price_metrics .get is not None
108107 assert client .location .analytics .category_rated_areas .get is not None
109- assert client .duty_of_care .diseases .covid19_area_report .get is not None
110108 assert client .duty_of_care .diseases .covid19_report .get is not None
111109 assert client .airline .destinations .get is not None
112110
@@ -498,13 +496,6 @@ def test_analytics_itinerary_price_metrics_get(client_setup):
498496 )
499497
500498
501- def test_duty_of_care_diseases_covid19_area_report_get (client_setup ):
502- client_setup .duty_of_care .diseases .covid19_area_report .get (a = 'b' )
503- client_setup .get .assert_called_with (
504- '/v1/duty-of-care/diseases/covid19-area-report' , a = 'b'
505- )
506-
507-
508499def test_duty_of_care_diseases_covid19_report_get (client_setup ):
509500 client_setup .duty_of_care .diseases .covid19_report .get (a = 'b' )
510501 client_setup .get .assert_called_with (
0 commit comments