diff options
| author | Sławek Ehlert <slafs@op.pl> | 2015-01-29 15:16:45 +0100 |
|---|---|---|
| committer | Sławek Ehlert <slafs@op.pl> | 2015-01-29 15:16:45 +0100 |
| commit | 950fbc2b601e5424f195b19690ae7abb0e5baae6 (patch) | |
| tree | e6993a7ded98fab3139ae7319238e999b1b8e795 /tests/test_options.py | |
| parent | 8e2e583694ac0b374a3aa9712e8274ef3519f1d1 (diff) | |
| download | click-950fbc2b601e5424f195b19690ae7abb0e5baae6.tar.gz | |
fix spelling
Diffstat (limited to 'tests/test_options.py')
| -rw-r--r-- | tests/test_options.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test_options.py b/tests/test_options.py index 2c75b3a..d51428e 100644 --- a/tests/test_options.py +++ b/tests/test_options.py @@ -222,7 +222,7 @@ def test_multiline_help(runner): def test_argument_custom_class(runner): class CustomArgument(click.Argument): def get_default(self, ctx): - '''a dumb ovverride of a default value for testing''' + '''a dumb override of a default value for testing''' return 'I am a default' @click.command() @@ -238,7 +238,7 @@ def test_argument_custom_class(runner): def test_option_custom_class(runner): class CustomOption(click.Option): def get_help_record(self, ctx): - '''a dumb ovverride of a help text for testing''' + '''a dumb override of a help text for testing''' return ('--help', 'I am a help text') @click.command() |
