summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2017-01-05 17:41:36 (EST)
committer P. J. McDermott <pj@pehjota.net>2017-01-05 17:41:36 (EST)
commit1406c77517a714072201d392c2c9b818f9e99660 (patch)
tree2ce9bd1d7e1eeb9b2dd53b357d595798460ce972 /t
parent9e647c9dfb12c820b5a66d033d3a42b6377fcd65 (diff)
downloadMath-Decimal-FastPP-1406c77517a714072201d392c2c9b818f9e99660.zip
Math-Decimal-FastPP-1406c77517a714072201d392c2c9b818f9e99660.tar.gz
Math-Decimal-FastPP-1406c77517a714072201d392c2c9b818f9e99660.tar.bz2
t/11_dmul.t: Stringify results in test data
Diffstat (limited to 't')
-rw-r--r--t/11_dmul.t8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/11_dmul.t b/t/11_dmul.t
index eb8f7d1..f7f8a0e 100644
--- a/t/11_dmul.t
+++ b/t/11_dmul.t
@@ -27,10 +27,10 @@ my $b;
my $c;
@tests = (
- # a b c
- [ 1.23, 4.56, 5.6088],
- [-1.23, 4.56, -5.6088],
- [-1.23, -4.56, 5.6088],
+ # a b c
+ [ 1.23, 4.56, "5.6088"],
+ [-1.23, 4.56, "-5.6088"],
+ [-1.23, -4.56, "5.6088"],
);
plan("tests" => scalar(@tests));