this doesn't take a list

This commit is contained in:
Jean-Paul Calderone 2021-01-10 11:21:13 -05:00
parent b3a6f25c1c
commit a73668a056

View File

@ -80,10 +80,10 @@ class GetArgvTests(SyncTestCase):
argv = get_argv() argv = get_argv()
self.assertThat( self.assertThat(
argv, argv,
MatchesAll([ MatchesAll(
IsInstance(list), IsInstance(list),
AllMatch(IsInstance(str)), AllMatch(IsInstance(str)),
]), ),
) )
@given(lists(text(max_size=4), max_size=4)) @given(lists(text(max_size=4), max_size=4))