diff options
author | SWu <SWu@users.noreply.github.com> | 2018-04-17 22:32:42 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-17 22:32:42 -0400 |
commit | 78a15c78d811b5357bd020322a716ebc0999444e (patch) | |
tree | 657c2f1d7d8f9468ad020cdcdd42d124e0eb48b8 /tests | |
parent | 7a32558c1a07830c3a59e96053e1e9a3e84927a2 (diff) | |
download | click-78a15c78d811b5357bd020322a716ebc0999444e.tar.gz |
Fix test as well
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_basic.py | 2 |
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' |