From 3b27e8c12f8e059e3248bfe93700e76e4c6b91e7 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Tue, 27 Aug 2024 18:15:08 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=F0=9F=90=9B=20Spell=20"notificatio?= =?UTF-8?q?ns"=20w/o=20mistakes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- codecov_cli/services/upload/__init__.py | 4 ++-- tests/services/upload/test_upload_service.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/codecov_cli/services/upload/__init__.py b/codecov_cli/services/upload/__init__.py index a8fc64d7..e91cbc34 100644 --- a/codecov_cli/services/upload/__init__.py +++ b/codecov_cli/services/upload/__init__.py @@ -79,7 +79,7 @@ def do_upload_logic( except click.ClickException as exp: if handle_no_reports_found: logger.info( - "No coverage reports found. Triggering notificaions without uploading." + "No coverage reports found. Triggering notifications without uploading." ) upload_completion_logic( commit_sha=commit_sha, @@ -93,7 +93,7 @@ def do_upload_logic( error=None, warnings=None, status_code=200, - text="No coverage reports found. Triggering notificaions without uploading.", + text="No coverage reports found. Triggering notifications without uploading.", ) else: raise exp diff --git a/tests/services/upload/test_upload_service.py b/tests/services/upload/test_upload_service.py index 8f7ad3e4..85fd26dd 100644 --- a/tests/services/upload/test_upload_service.py +++ b/tests/services/upload/test_upload_service.py @@ -390,14 +390,14 @@ def side_effect(*args, **kwargs): assert out_bytes == [ ( "info", - "No coverage reports found. Triggering notificaions without uploading.", + "No coverage reports found. Triggering notifications without uploading.", ), ] assert res == RequestResult( error=None, warnings=None, status_code=200, - text="No coverage reports found. Triggering notificaions without uploading.", + text="No coverage reports found. Triggering notifications without uploading.", ) mock_select_preparation_plugins.assert_called_with( cli_config, ["first_plugin", "another", "forth"]