def test_max_in_list( self ): list = [ 1, 2, 3, 4, 44, 6, 10, 7 ] max = exercises.max_in_list( list ) self.assertEqual( max, 44 )