Commit c680c67e authored by Taddeus Kroes's avatar Taddeus Kroes

Removed duplicate function in unit tests.

parent 2d9ca51e
...@@ -8,12 +8,6 @@ from tests.test_rules_poly import tree ...@@ -8,12 +8,6 @@ from tests.test_rules_poly import tree
class TestRulesNumerics(RulesTestCase): class TestRulesNumerics(RulesTestCase):
def test_add_numerics(self):
l0, a, l1 = tree('1,a,2')
self.assertEqual(add_numerics(l0 + l1, (l0, l1, 1, 2)), 3)
self.assertEqual(add_numerics(l0 + a + l1, (l0, l1, 1, 2)), L(3) + a)
def test_add_numerics(self): def test_add_numerics(self):
l0, a, l1 = tree('1,a,2') l0, a, l1 = tree('1,a,2')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment