summaryrefslogtreecommitdiff
path: root/tests/numerics/CommodityAmount.cc
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2007-05-02 03:05:10 +0000
committerJohn Wiegley <johnw@newartisans.com>2008-04-13 03:38:35 -0400
commit103881ff80008b09608550de5b72b91509eb9fff (patch)
tree00d4fb5710d9a76dca3130478f67ba408a99dafe /tests/numerics/CommodityAmount.cc
parent9e80a6fbcc837c0bfc3f5846347da1a25364ba44 (diff)
downloadfork-ledger-103881ff80008b09608550de5b72b91509eb9fff.tar.gz
fork-ledger-103881ff80008b09608550de5b72b91509eb9fff.tar.bz2
fork-ledger-103881ff80008b09608550de5b72b91509eb9fff.zip
First round of using boost/operators is done.
Diffstat (limited to 'tests/numerics/CommodityAmount.cc')
-rw-r--r--tests/numerics/CommodityAmount.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/numerics/CommodityAmount.cc b/tests/numerics/CommodityAmount.cc
index ffedbdac..e443d6a1 100644
--- a/tests/numerics/CommodityAmount.cc
+++ b/tests/numerics/CommodityAmount.cc
@@ -465,8 +465,8 @@ void CommodityAmountTestCase::testConversion()
amount_t x1("$1234.56");
assertEqual(true, bool(x1));
- assertEqual(1234L, long(x1));
- assertEqual(1234.56, double(x1));
+ assertEqual(1234L, x1.to_long());
+ assertEqual(1234.56, x1.to_double());
assertEqual(string("$1234.56"), x1.to_string());
assertEqual(string("1234.56"), x1.quantity_string());