From e58da97c5349d8da40a8fa00dd06e6b08b921c2a Mon Sep 17 00:00:00 2001 From: Bharath Chadarajupalli Date: Fri, 23 Aug 2024 07:54:12 +0530 Subject: [PATCH] Test Attribute Error --- cumulusci/cli/tests/test_error.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cumulusci/cli/tests/test_error.py b/cumulusci/cli/tests/test_error.py index 62dd2825e8..e325b903b0 100644 --- a/cumulusci/cli/tests/test_error.py +++ b/cumulusci/cli/tests/test_error.py @@ -117,6 +117,7 @@ def test_gist__creation_error(self, gh_api, create_gist, date, sys, platform): class ExceptionWithResponse(Exception, mock.Mock): def __init__(self, status_code): + super().__init__() self.response = mock.Mock(status_code=status_code) create_gist.side_effect = ExceptionWithResponse(503)