tracks/python/exercises/alphametics/alphametics_test.py in trackler-2.2.1.160 vs tracks/python/exercises/alphametics/alphametics_test.py in trackler-2.2.1.161
- old
+ new
@@ -3,10 +3,10 @@
from alphametics import solve
# Tests adapted from `problem-specifications//canonical-data.json` @ v1.2.0
-class TestAlphametics(unittest.TestCase):
+class AlphameticsTest(unittest.TestCase):
def test_puzzle_with_three_letters(self):
self.assertEqual(solve("I + BB == ILL"), {"I": 1, "B": 9, "L": 0})
def test_solution_must_have_unique_value_for_each_letter(self):
self.assertEqual(solve("A == B"), {})