diff --git a/pymath/calculus/test/test_expression.py b/pymath/calculus/test/test_expression.py index 84b2a1f..09713ef 100644 --- a/pymath/calculus/test/test_expression.py +++ b/pymath/calculus/test/test_expression.py @@ -11,8 +11,8 @@ from pymath.calculus.render import txt, tex def test_init_from_str(): - exp = Expression("2 + 3") - assert exp.postfix_tokens == [2, 3, "+"] + exp = Expression("2 + 3") + assert exp.postfix_tokens == [2, 3, "+"] def test_init_from_exp(): pass diff --git a/pymath/calculus/test/test_generic.py b/pymath/calculus/test/test_generic.py index 16465fc..bfc0838 100644 --- a/pymath/calculus/test/test_generic.py +++ b/pymath/calculus/test/test_generic.py @@ -4,7 +4,7 @@ import unittest -from pymath import generic +from pymath.calculus import generic class TestGeneric(unittest.TestCase): """Testing functions from pymath.calculus.generic"""