Commit c634189d authored by Russ Cox's avatar Russ Cox

typo

R=r
CC=golang-dev
https://golang.org/cl/190103
parent 82a7de9d
...@@ -12,7 +12,7 @@ import ( ...@@ -12,7 +12,7 @@ import (
func TestInt(t *testing.T) { func TestInt(t *testing.T) {
reqs := NewInt("requests") reqs := NewInt("requests")
if reqs.i != 0 { 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) { if reqs != Get("requests").(*Int) {
t.Errorf("Get() failed.") t.Errorf("Get() failed.")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment