Fix unit test for contains to allow list instead of single value

This commit is contained in:
Micah Jerome Ellison 2024-05-10 07:23:55 -07:00
parent 989f504180
commit beb8608504

View file

@ -55,7 +55,7 @@ def test_empty():
def test_contains_alone(): def test_contains_alone():
assert cli_as_dict("-contains whatever") == expected_args(contains="whatever") assert cli_as_dict("-contains whatever") == expected_args(contains=["whatever"])
def test_debug_alone(): def test_debug_alone():