summaryrefslogtreecommitdiff
path: root/src/lib/strconv/fp_test.go
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2009-01-15 13:48:11 -0800
committerRob Pike <r@golang.org>2009-01-15 13:48:11 -0800
commit8024c6e3aec249fcc40b62e8879d30207e879be9 (patch)
treea72b91ed6b55c7c4635039376af421a98695ad60 /src/lib/strconv/fp_test.go
parentd6b313278a61f109ab8b71dd8c77a40ff557b819 (diff)
downloadgolang-8024c6e3aec249fcc40b62e8879d30207e879be9.tar.gz
printf->Printf etc.
the raw fmt routines will be another, smaller but subtler pass. R=rsc DELTA=157 (0 added, 0 deleted, 157 changed) OCL=22851 CL=22851
Diffstat (limited to 'src/lib/strconv/fp_test.go')
-rw-r--r--src/lib/strconv/fp_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/strconv/fp_test.go b/src/lib/strconv/fp_test.go
index 1b60d3f77..ef82d369f 100644
--- a/src/lib/strconv/fp_test.go
+++ b/src/lib/strconv/fp_test.go
@@ -131,14 +131,14 @@ export func TestFp(t *testing.T) {
t.Error("testfp.txt:", lineno, ": cannot atof64 ", a[2]);
continue;
}
- s = fmt.sprintf(a[1], v);
+ s = fmt.Sprintf(a[1], v);
case "float32":
v1, ok := myatof32(a[2]);
if !ok {
t.Error("testfp.txt:", lineno, ": cannot atof32 ", a[2]);
continue;
}
- s = fmt.sprintf(a[1], v1);
+ s = fmt.Sprintf(a[1], v1);
v = float64(v1);
}
if s != a[3] {