diff options
Diffstat (limited to 'tests/python/corelib/numerics/CommodityAmount.py')
-rw-r--r-- | tests/python/corelib/numerics/CommodityAmount.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/python/corelib/numerics/CommodityAmount.py b/tests/python/corelib/numerics/CommodityAmount.py index 923fab69..80f58b21 100644 --- a/tests/python/corelib/numerics/CommodityAmount.py +++ b/tests/python/corelib/numerics/CommodityAmount.py @@ -10,8 +10,6 @@ internalAmount = amount.exact class CommodityAmountTestCase(unittest.TestCase): def setUp(self): - amount.initialize() - # Cause the display precision for dollars to be initialized to 2. x1 = amount("$1.00") self.assertTrue(x1) @@ -19,7 +17,6 @@ class CommodityAmountTestCase(unittest.TestCase): def tearDown(self): amount.full_strings = False - amount.shutdown() def assertValid(self, amt): self.assertTrue(amt.valid()) |