tracks/python/exercises/rectangles/rectangles_test.py in trackler-2.2.1.160 vs tracks/python/exercises/rectangles/rectangles_test.py in trackler-2.2.1.161
- old
+ new
@@ -3,10 +3,10 @@
from rectangles import count
# Tests adapted from `problem-specifications//canonical-data.json` @ v1.1.0
-class WordTest(unittest.TestCase):
+class RectanglesTest(unittest.TestCase):
def test_no_rows(self):
self.assertEqual(count([]), 0)
def test_no_columns(self):
self.assertEqual(count(['']), 0)