presentations

This commit is contained in:
Benjamin Bertrand 2016-01-17 18:07:05 +03:00
parent 89b81f97c8
commit 209e235a56
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -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"""