From 7d16d63e1ed0d5e7b2529848280b92b84d9bccbc Mon Sep 17 00:00:00 2001 From: joseph-sentry Date: Thu, 29 Feb 2024 14:58:20 -0500 Subject: [PATCH] chore: fix typo in help description Signed-off-by: joseph-sentry --- codecov_cli/commands/upload.py | 2 +- tests/commands/test_invoke_upload_process.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/codecov_cli/commands/upload.py b/codecov_cli/commands/upload.py index fafb34af..77c52a19 100644 --- a/codecov_cli/commands/upload.py +++ b/codecov_cli/commands/upload.py @@ -63,7 +63,7 @@ def _turn_env_vars_into_dict(ctx, params, value): ), click.option( "--disable-search", - help="Disable search for coverage files. This is helpful when specifying what files you want to uload with the --file option.", + help="Disable search for coverage files. This is helpful when specifying what files you want to upload with the --file option.", is_flag=True, default=False, ), diff --git a/tests/commands/test_invoke_upload_process.py b/tests/commands/test_invoke_upload_process.py index 67e88607..cac7a116 100644 --- a/tests/commands/test_invoke_upload_process.py +++ b/tests/commands/test_invoke_upload_process.py @@ -91,7 +91,7 @@ def test_upload_process_options(mocker): " disable uploading other files.", " --disable-search Disable search for coverage files. This is", " helpful when specifying what files you want to", - " uload with the --file option.", + " upload with the --file option.", " --disable-file-fixes Disable file fixes to ignore common lines from", " coverage (e.g. blank lines or empty brackets)", " -b, --build, --build-code TEXT Specify the build number manually",