diff options
author | Russ Cox <rsc@golang.org> | 2009-06-06 00:01:47 -0700 |
---|---|---|
committer | Russ Cox <rsc@golang.org> | 2009-06-06 00:01:47 -0700 |
commit | b1f3a84d79ef4841515eeb9187efd277deed3f64 (patch) | |
tree | d86226d541b2f267de14e0752c666e8853b129d4 | |
parent | 471ab152098cfb1ed398bd340ddad56837614871 (diff) | |
download | golang-b1f3a84d79ef4841515eeb9187efd277deed3f64.tar.gz |
delete unnecessary newline
R=gri
DELTA=1 (0 added, 0 deleted, 1 changed)
OCL=29971
CL=29975
-rw-r--r-- | src/lib/strconv/fp_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/strconv/fp_test.go b/src/lib/strconv/fp_test.go index a7a159b64..60d7ce6cf 100644 --- a/src/lib/strconv/fp_test.go +++ b/src/lib/strconv/fp_test.go @@ -142,7 +142,7 @@ func TestFp(t *testing.T) { } if s != a[3] { t.Error("testfp.txt:", lineno, ": ", a[0], " ", a[1], " ", a[2], " (", v, ") ", - "want ", a[3], " got ", s, "\n"); + "want ", a[3], " got ", s); } //else print("testfp.txt:", lineno, ": worked! ", s, "\n"); } |