diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/unit/test_option_manager.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/unit/test_option_manager.py b/tests/unit/test_option_manager.py index b97a9a6..f2ee4f9 100644 --- a/tests/unit/test_option_manager.py +++ b/tests/unit/test_option_manager.py @@ -303,6 +303,8 @@ def test_optparse_normalize_callback_option_legacy(optmanager): ('string', 'foo', 'foo'), ('float', '1.5', 1.5), ('complex', '1+5j', 1 + 5j), + # optparse allows this but does not document it + ('str', 'foo', 'foo'), ), ) def test_optparse_normalize_types(optmanager, type_s, input_val, expected): |
