diff options
author | Yitzchak Scott-Thoennes <sthoenna@efn.org> | 2002-03-06 12:22:54 -0800 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-07 04:39:39 +0000 |
commit | d1eb8299735ff97f5e49efd0313271aeeb84e2c7 (patch) | |
tree | 5a51826c328de13e7eff855b4b1b5059343f2839 /t/base | |
parent | 3f1f789b3ede74d7efaf7fd0fee1d844293351f7 (diff) | |
download | perl-d1eb8299735ff97f5e49efd0313271aeeb84e2c7.tar.gz |
Re: [PATCH] tests for Gconvert
Message-ID: <esuh8gzkg2/b092yn@efn.org>
p4raw-id: //depot/perl@15078
Diffstat (limited to 't/base')
-rw-r--r-- | t/base/num.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/base/num.t b/t/base/num.t index 8a0eb923e9..22f96bef42 100644 --- a/t/base/num.t +++ b/t/base/num.t @@ -107,7 +107,7 @@ $a = 1000; "$a"; print $a + 1 == 1001 ? "ok 30\n" : "not ok 30 #" . $a + 1 . "\n"; # back to some basic stringify tests -# we expect NV stringification to work according to C sprintf %.g rules +# we expect NV stringification to work according to C sprintf %.*g rules $a = 0.01; "$a"; print $a eq "0.01" ? "ok 31\n" : "not ok 31 # $a\n"; |