Skip to content

Commit

Permalink
Fixing linting
Browse files Browse the repository at this point in the history
  • Loading branch information
sylviamclaughlin authored Jan 26, 2024
1 parent 8bded6a commit 0f96417
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/tests/intergrations/test_google_drive.py
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ def test_replace_text_between_headings_neither_heading_not_found(mock_service):
# Check if batchUpdate was not called as the start heading was not found
assert not mock_service.return_value.documents().batchUpdate.called


@patch("integrations.google_drive.list_metadata")
def test_healthcheck_healthy(mock_list_metadata):
mock_list_metadata.return_value = {"id": "test_doc"}
Expand All @@ -580,4 +580,3 @@ def test_healthcheck_healthy(mock_list_metadata):
def test_healthcheck_unhealthy(mock_list_metadata):
mock_list_metadata.return_value = None
assert google_drive.healthcheck() is False

0 comments on commit 0f96417

Please sign in to comment.