diff options
Diffstat (limited to 'testenv/tests/validators/test_basic.py')
-rw-r--r-- | testenv/tests/validators/test_basic.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/testenv/tests/validators/test_basic.py b/testenv/tests/validators/test_basic.py index 85a84d5d..1e8feb0c 100644 --- a/testenv/tests/validators/test_basic.py +++ b/testenv/tests/validators/test_basic.py @@ -142,6 +142,7 @@ def test_fail__valid_float_f01(arg: Any) -> None: # ===== @pytest.mark.parametrize("arg, retval", [ ("a, b, c", ["a", "b", "c"]), + ("a, b,, c", ["a", "b", "c"]), ("a b c", ["a", "b", "c"]), (["a", "b", "c"], ["a", "b", "c"]), ("", []), |