Skip to content

Commit 64ff3d2

Browse files
Apply suggested fix to tests/test_api.py from Copilot Autofix
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
1 parent 4e02b13 commit 64ff3d2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def test_not_found(self, mock_get, mock_post):
8989

9090
@mock.patch("requests.get", side_effect=mocked_requests_get)
9191
@mock.patch("requests.post", side_effect=mocked_requests_post)
92-
def test_resource_unauthorized(self, mock_get, mock_post):
92+
def test_resource_unauthorized(self, mock_post, mock_get):
9393
client = SimpleJsonApiClient(MOCK_API_BASE_URL)
9494
with self.assertRaises(ResourceUnauthorized):
9595
client.get("/unauthorized")

0 commit comments

Comments
 (0)