So this is the code I am testing:
def test_sum(): test_list=[10,20,30,40,50] result=sum(test_list) assert result == 150
Th