diff options
Diffstat (limited to 'testenv/tests/validators/test_hw.py')
-rw-r--r-- | testenv/tests/validators/test_hw.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/testenv/tests/validators/test_hw.py b/testenv/tests/validators/test_hw.py index a10a5feb..912f8f5e 100644 --- a/testenv/tests/validators/test_hw.py +++ b/testenv/tests/validators/test_hw.py @@ -82,6 +82,7 @@ def test_fail__valid_gpio_pin_optional(arg: Any) -> None: "_", "_foo_bar_", " aix", + "a" * 255, ]) def test_ok__valid_otg_gadget(arg: Any) -> None: assert valid_otg_gadget(arg) == arg.strip() @@ -93,6 +94,7 @@ def test_ok__valid_otg_gadget(arg: Any) -> None: "te~st", "-", "-foo_bar", + "a" * 256, " ", "", None, |