summaryrefslogtreecommitdiff
path: root/tests/test_options.py
diff options
context:
space:
mode:
authorSławek Ehlert <slafs@op.pl>2015-01-29 15:16:45 +0100
committerSławek Ehlert <slafs@op.pl>2015-01-29 15:16:45 +0100
commit950fbc2b601e5424f195b19690ae7abb0e5baae6 (patch)
treee6993a7ded98fab3139ae7319238e999b1b8e795 /tests/test_options.py
parent8e2e583694ac0b374a3aa9712e8274ef3519f1d1 (diff)
downloadclick-950fbc2b601e5424f195b19690ae7abb0e5baae6.tar.gz
fix spelling
Diffstat (limited to 'tests/test_options.py')
-rw-r--r--tests/test_options.py4
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()