문제

@with_checker([int])
    def check_sort(list_of_ints):
        self.assertTrue(isinstance(list_of_ints, list))
        self.assertTrue(len(list) == len(qsort(list)))
        self.assertTrue(False)

I'm trying to run this, but it won't run, what is the problem?

도움이 되었습니까?

해결책

Test names must start with "test_"

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top