diff options
author | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-10-27 20:52:52 +0000 |
---|---|---|
committer | einhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-10-27 20:52:52 +0000 |
commit | 45d9674323d8828c71a807ba5d23173868dea298 (patch) | |
tree | 249f637f7ab367aef49b812349486c772276c7d2 /t | |
parent | a3c58a38620e82d8ba0b536c9d062e1c49846225 (diff) |
Corrected bug in nan comparison in test suite
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@343 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 't')
-rw-r--r-- | t/02-number-handling.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/02-number-handling.t b/t/02-number-handling.t index 0a6b43dc..8ad787aa 100644 --- a/t/02-number-handling.t +++ b/t/02-number-handling.t @@ -158,6 +158,6 @@ foreach my $format (0 .. $#formats) { is($form->parse_amount(\%myconfig, ''), undef, "Empty string returns undef"); - cmp_ok($form->parse_amount(\%myconfig, 'foo'), '==', + cmp_ok($form->parse_amount(\%myconfig, 'foo'), 'eq', Math::BigFloat->bnan(), "Invalid string returns NaN"); } |