summaryrefslogtreecommitdiff
path: root/test/unit/t_balance.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/unit/t_balance.cc')
-rw-r--r--test/unit/t_balance.cc18
1 files changed, 9 insertions, 9 deletions
diff --git a/test/unit/t_balance.cc b/test/unit/t_balance.cc
index b74a54e7..0d681a88 100644
--- a/test/unit/t_balance.cc
+++ b/test/unit/t_balance.cc
@@ -10,21 +10,21 @@ using namespace ledger;
struct balance_fixture {
balance_fixture() {
- times_initialize();
- amount_t::initialize();
+ times_initialize();
+ amount_t::initialize();
- // Cause the display precision for dollars to be initialized to 2.
- amount_t x1("$1.00");
- BOOST_CHECK(x1);
+ // Cause the display precision for dollars to be initialized to 2.
+ amount_t x1("$1.00");
+ BOOST_CHECK(x1);
- amount_t::stream_fullstrings = true; // make reports from UnitTests accurate
+ amount_t::stream_fullstrings = true; // make reports from UnitTests accurate
}
~balance_fixture()
{
- amount_t::stream_fullstrings = false;
- amount_t::shutdown();
- times_shutdown();
+ amount_t::stream_fullstrings = false;
+ amount_t::shutdown();
+ times_shutdown();
}
};