diff options
Diffstat (limited to 't')
-rw-r--r-- | t/11_dmul.t | 8 |
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)); |