summaryrefslogtreecommitdiff
path: root/src/pkg/expvar/expvar_test.go
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-01-22 14:24:17 -0800
committerRuss Cox <rsc@golang.org>2010-01-22 14:24:17 -0800
commit01d2b7da5503de2f8f2e0da8a63eeeb97feaece5 (patch)
treeac8117c27b67cddad9ea5495b198f3abfc9f157a /src/pkg/expvar/expvar_test.go
parentefaaaf259558dbcd92f4852f2d022c7e54c0070d (diff)
downloadgolang-01d2b7da5503de2f8f2e0da8a63eeeb97feaece5.tar.gz
typo
R=r CC=golang-dev http://codereview.appspot.com/190103
Diffstat (limited to 'src/pkg/expvar/expvar_test.go')
-rw-r--r--src/pkg/expvar/expvar_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/expvar/expvar_test.go b/src/pkg/expvar/expvar_test.go
index 51930eb1d..2dc399e7d 100644
--- a/src/pkg/expvar/expvar_test.go
+++ b/src/pkg/expvar/expvar_test.go
@@ -12,7 +12,7 @@ import (
func TestInt(t *testing.T) {
reqs := NewInt("requests")
if reqs.i != 0 {
- t.Errorf("reqs.i = %v, want 4", reqs.i)
+ t.Errorf("reqs.i = %v, want 0", reqs.i)
}
if reqs != Get("requests").(*Int) {
t.Errorf("Get() failed.")