Skip to content
This repository was archived by the owner on Jul 16, 2025. It is now read-only.

Commit 4bf285c

Browse files
📝🐛 Spell "notifications" w/o mistakes (#492)
Co-authored-by: Tom Hu <88201630+thomasrockhu-codecov@users.noreply.github.com>
1 parent 0e1ddf6 commit 4bf285c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

codecov_cli/services/upload/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def do_upload_logic(
102102
except click.ClickException as exp:
103103
if handle_no_reports_found:
104104
logger.info(
105-
"No coverage reports found. Triggering notificaions without uploading."
105+
"No coverage reports found. Triggering notifications without uploading."
106106
)
107107
upload_completion_logic(
108108
commit_sha=commit_sha,
@@ -116,7 +116,7 @@ def do_upload_logic(
116116
error=None,
117117
warnings=None,
118118
status_code=200,
119-
text="No coverage reports found. Triggering notificaions without uploading.",
119+
text="No coverage reports found. Triggering notifications without uploading.",
120120
)
121121
else:
122122
raise exp

tests/services/upload/test_upload_service.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -467,14 +467,14 @@ def side_effect(*args, **kwargs):
467467
assert out_bytes == [
468468
(
469469
"info",
470-
"No coverage reports found. Triggering notificaions without uploading.",
470+
"No coverage reports found. Triggering notifications without uploading.",
471471
),
472472
]
473473
assert res == RequestResult(
474474
error=None,
475475
warnings=None,
476476
status_code=200,
477-
text="No coverage reports found. Triggering notificaions without uploading.",
477+
text="No coverage reports found. Triggering notifications without uploading.",
478478
)
479479
mock_select_preparation_plugins.assert_called_with(
480480
cli_config,

0 commit comments

Comments
 (0)