diff options
Diffstat (limited to 'tests/numerics/t_amount.cc')
-rw-r--r-- | tests/numerics/t_amount.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/numerics/t_amount.cc b/tests/numerics/t_amount.cc index 67ea1781..a59ff2ea 100644 --- a/tests/numerics/t_amount.cc +++ b/tests/numerics/t_amount.cc @@ -1,7 +1,5 @@ #include "t_amount.h" -#define internalAmount(x) amount_t::exact(x) - CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(AmountTestCase, "numerics"); void AmountTestCase::setUp() @@ -11,7 +9,8 @@ void AmountTestCase::setUp() // Cause the display precision for dollars to be initialized to 2. amount_t x1("$1.00"); assertTrue(x1); - amount_t::stream_fullstrings = true; // makes error reports from UnitTests accurate + + amount_t::stream_fullstrings = true; // make reports from UnitTests accurate } void AmountTestCase::tearDown() |