Remove types from constants, since they didn't match what

Tick() expected.

R=rsc
DELTA=2  (0 added, 0 deleted, 2 changed)
OCL=22979
CL=22986
This commit is contained in:
Ian Lance Taylor 2009-01-16 14:59:27 -08:00
parent 360962420c
commit 6e4b9c696f

View File

@ -11,8 +11,8 @@ import (
export func TestTick(t *testing.T) {
const (
Delta uint64 = 100*1e6;
Count uint64 = 10;
Delta = 100*1e6;
Count = 10;
);
c := Tick(Delta);
t0 := Nanoseconds();