summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSWu <SWu@users.noreply.github.com>2018-04-17 22:32:42 -0400
committerGitHub <noreply@github.com>2018-04-17 22:32:42 -0400
commit78a15c78d811b5357bd020322a716ebc0999444e (patch)
tree657c2f1d7d8f9468ad020cdcdd42d124e0eb48b8 /tests
parent7a32558c1a07830c3a59e96053e1e9a3e84927a2 (diff)
downloadclick-78a15c78d811b5357bd020322a716ebc0999444e.tar.gz
Fix test as well
Diffstat (limited to 'tests')
-rw-r--r--tests/test_basic.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_basic.py b/tests/test_basic.py
index 94e0aae..8ba251f 100644
--- a/tests/test_basic.py
+++ b/tests/test_basic.py
@@ -187,7 +187,7 @@ def test_boolean_conversion(runner):
def cli(flag):
click.echo(flag)
- for value in 'true', 't,' '1', 'yes', 'y':
+ for value in 'true', 't', '1', 'yes', 'y':
result = runner.invoke(cli, ['--flag', value])
assert not result.exception
assert result.output == 'True\n'