0
@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?

Ashwini Chaudhary
  • 244,495
  • 58
  • 464
  • 504
Viktor Mellgren
  • 4,318
  • 3
  • 42
  • 75

1 Answers1

0

Test names must start with "test_"

Viktor Mellgren
  • 4,318
  • 3
  • 42
  • 75