summaryrefslogtreecommitdiff
path: root/tests/python/UnitTests.py
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2007-05-07 10:43:15 +0000
committerJohn Wiegley <johnw@newartisans.com>2008-04-13 03:38:40 -0400
commit39b0a03f8281c2ee7af57326d49dcedd1eb29a47 (patch)
treeffc7cc9838f784aa22db16b882f81dcf6d01aca4 /tests/python/UnitTests.py
parent6ec2f6b59be2fe8e621e97a39836e7033fd0f240 (diff)
downloadledger-39b0a03f8281c2ee7af57326d49dcedd1eb29a47.tar.gz
ledger-39b0a03f8281c2ee7af57326d49dcedd1eb29a47.tar.bz2
ledger-39b0a03f8281c2ee7af57326d49dcedd1eb29a47.zip
Changed the filenames of the tests.
Diffstat (limited to 'tests/python/UnitTests.py')
-rw-r--r--tests/python/UnitTests.py6
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))