delete a pointless todo in all_test.go.

address one in rpc/client.go

R=rsc
CC=go-dev
http://go/go-review/1026030
This commit is contained in:
Rob Pike 2009-11-08 21:57:59 -08:00
parent c532940ecf
commit e02f2b51c5
2 changed files with 9 additions and 5 deletions

View file

@ -349,7 +349,7 @@ func TestPtrPointTo(t *testing.T) {
}
}
func TestAll(t *testing.T) { // TODO(r): wrap up better
func TestAll(t *testing.T) {
testType(t, 1, Typeof((int8)(0)), "int8");
testType(t, 2, Typeof((*int8)(nil)).(*PtrType).Elem(), "int8");