summaryrefslogtreecommitdiff
path: root/tests/python/corelib/numerics/CommodityAmount.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/python/corelib/numerics/CommodityAmount.py')
-rw-r--r--tests/python/corelib/numerics/CommodityAmount.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/python/corelib/numerics/CommodityAmount.py b/tests/python/corelib/numerics/CommodityAmount.py
index ce6479a2..1a32243f 100644
--- a/tests/python/corelib/numerics/CommodityAmount.py
+++ b/tests/python/corelib/numerics/CommodityAmount.py
@@ -4,7 +4,7 @@ import exceptions
from ledger import amount
-class BasicAmountTestCase(unittest.TestCase):
+class CommodityAmountTestCase(unittest.TestCase):
def testConstructors(self):
x0 = amount()
x1 = amount(123456)
@@ -457,7 +457,7 @@ class BasicAmountTestCase(unittest.TestCase):
def suite():
- return unittest.TestLoader().loadTestsFromTestCase(BasicAmountTestCase)
+ return unittest.TestLoader().loadTestsFromTestCase(CommodityAmountTestCase)
if __name__ == '__main__':
unittest.main()