aboutsummaryrefslogtreecommitdiff
path: root/src/lib/time
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2009-01-16 14:59:27 -0800
committerIan Lance Taylor <iant@golang.org>2009-01-16 14:59:27 -0800
commit6e4b9c696f71ab416079ee901a157f24f6ae6bcf (patch)
treeb9b437290860fc1e113b9491e3b49d755a8a2403 /src/lib/time
parent360962420c484427bbc16e1f8699ee5cccc4f012 (diff)
downloadgo-6e4b9c696f71ab416079ee901a157f24f6ae6bcf.tar.xz
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
Diffstat (limited to 'src/lib/time')
-rw-r--r--src/lib/time/tick_test.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/time/tick_test.go b/src/lib/time/tick_test.go
index 85eb52e0fd..79038dcf84 100644
--- a/src/lib/time/tick_test.go
+++ b/src/lib/time/tick_test.go
@@ -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();