Commit 6e4b9c69 authored by Ian Lance Taylor's avatar Ian Lance Taylor

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
parent 36096242
......@@ -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();
......
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