diff options
author | Robert Griesemer <gri@golang.org> | 2009-12-09 16:54:07 -0800 |
---|---|---|
committer | Robert Griesemer <gri@golang.org> | 2009-12-09 16:54:07 -0800 |
commit | 0f265b61e8a1dd3c2a9e9e67b2c8a06ba835dabf (patch) | |
tree | 3dcff34cda5305eeb27606048c4460b0761b01ef /src/pkg/strconv/decimal_test.go | |
parent | b7a9cd5ad38e32bb598bb20ec2b6d8198a305a5c (diff) | |
download | golang-0f265b61e8a1dd3c2a9e9e67b2c8a06ba835dabf.tar.gz |
remove uses of string concatenation from src and misc directory
R=rsc
http://codereview.appspot.com/172041
Diffstat (limited to 'src/pkg/strconv/decimal_test.go')
-rw-r--r-- | src/pkg/strconv/decimal_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/strconv/decimal_test.go b/src/pkg/strconv/decimal_test.go index b86eec683..9e67aa4c3 100644 --- a/src/pkg/strconv/decimal_test.go +++ b/src/pkg/strconv/decimal_test.go @@ -20,7 +20,7 @@ var shifttests = []shiftTest{ shiftTest{0, 100, "0"}, shiftTest{1, 100, "1267650600228229401496703205376"}, shiftTest{1, -100, - "0.00000000000000000000000000000078886090522101180541" + "0.00000000000000000000000000000078886090522101180541" + "17285652827862296732064351090230047702789306640625", }, shiftTest{12345678, 8, "3160493568"}, |