• Asserts are wrong

Question related to mission Fix The Generator

 

Asserts in the code are:

assert checkio((4, 2, 10)) == 1, "First"

But shouldn't they be lists as tested for and shown in the example?

checkio([4, 2, 10]) == 1
10