diff --git a/test/test_zoom.py b/test/test_zoom.py index bae4c40fb..6ffe2f054 100644 --- a/test/test_zoom.py +++ b/test/test_zoom.py @@ -330,30 +330,30 @@ def test_get_past_webinar_report(self, m): "user_name": "Jill Chill", "uuid": "4444AAAiAAAAAiAiAiiAii==", } - tbl = Table( - [ - { - "custom_keys": [{"key": "Host Nation", "value": "US"}], - "dept": "HR", - "duration": 2, - "end_time": "2022-03-15T07:42:22Z", - "id": 345678902224, - "participants_count": 4, - "start_time": "2022-03-15T07:40:46Z", - "topic": "My Meeting", - "total_minutes": 3, - "tracking_fields": [{"field": "Host Nation", "value": "US"}], - "type": 4, - "user_email": "jchill@example.com", - "user_name": "Jill Chill", - "uuid": "4444AAAiAAAAAiAiAiiAii==", - } - ] - ) + # tbl = Table( + # [ + # { + # "custom_keys": [{"key": "Host Nation", "value": "US"}], + # "dept": "HR", + # "duration": 2, + # "end_time": "2022-03-15T07:42:22Z", + # "id": 345678902224, + # "participants_count": 4, + # "start_time": "2022-03-15T07:40:46Z", + # "topic": "My Meeting", + # "total_minutes": 3, + # "tracking_fields": [{"field": "Host Nation", "value": "US"}], + # "type": 4, + # "user_email": "jchill@example.com", + # "user_name": "Jill Chill", + # "uuid": "4444AAAiAAAAAiAiAiiAii==", + # } + # ] + # ) m.post(ZOOM_AUTH_CALLBACK, json={"access_token": "fakeAccessToken"}) m.get(ZOOM_URI + "report/webinars/123", json=report) - assert_matching_tables(self.zoom.get_past_webinar_report(123), tbl) + assert_matching_tables(self.zoom.get_past_webinar_report(123), report) @requests_mock.Mocker() def test_get_webinar_registrants(self, m):