Skip to content

Commit 6c48761

Browse files
authored
Fix broken test test_debug_option in tests/configure/test_config.py (#375)
1 parent f047ba8 commit 6c48761

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/configure/test_config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
def test_debug_option():
3939
# Test that context object debug_mode property changes with --debug flag fed.
4040
@click.command()
41-
@click.option('--debug-fed')
41+
@click.option('--debug-fed', type=bool)
4242
@config.debug_option
4343
def test_debug(debug_fed): # noqa
4444
ctx = click.get_current_context()

0 commit comments

Comments
 (0)