]> Cypherpunks repositories - gostls13.git/commitdiff
Remove types from constants, since they didn't match what
authorIan Lance Taylor <iant@golang.org>
Fri, 16 Jan 2009 22:59:27 +0000 (14:59 -0800)
committerIan Lance Taylor <iant@golang.org>
Fri, 16 Jan 2009 22:59:27 +0000 (14:59 -0800)
Tick() expected.

R=rsc
DELTA=2  (0 added, 0 deleted, 2 changed)
OCL=22979
CL=22986

src/lib/time/tick_test.go

index 85eb52e0fd844f085d5dd351db0819e28a01ba3a..79038dcf84553b5d349dda2168d858aae419fabb 100644 (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();