diff options
Diffstat (limited to 'tests/python/UnitTests.py')
-rw-r--r-- | tests/python/UnitTests.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/python/UnitTests.py b/tests/python/UnitTests.py index 84b8432b..843e9fc1 100644 --- a/tests/python/UnitTests.py +++ b/tests/python/UnitTests.py @@ -1,11 +1,9 @@ from unittest import TextTestRunner, TestSuite -import tests.python.numerics.BasicAmount as BasicAmount -import tests.python.numerics.CommodityAmount as CommodityAmount +import tests.python.numerics.t_amount as t_amount suites = [ - BasicAmount.suite(), - CommodityAmount.suite(), + t_amount.suite(), ] TextTestRunner().run(TestSuite(suites)) |