From fa6c8f4f1829437e9697cafd44deb486bd0adcbe Mon Sep 17 00:00:00 2001 From: Xiang Li Date: Sun, 11 Aug 2013 11:04:15 -0700 Subject: [PATCH] fix naming in long_test.go --- etcd_long_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etcd_long_test.go b/etcd_long_test.go index 1589bd153..15dbcc185 100644 --- a/etcd_long_test.go +++ b/etcd_long_test.go @@ -57,8 +57,8 @@ func TestKillLeader(t *testing.T) { totalTime += take avgTime := totalTime / (time.Duration)(i+1) - fmt.Println("Leader election time is ", take, "with election timeout", ELECTIONTIMEOUT) - fmt.Println("Leader election time average is", avgTime, "with election timeout", ELECTIONTIMEOUT) + fmt.Println("Leader election time is ", take, "with election timeout", ElectionTimeout) + fmt.Println("Leader election time average is", avgTime, "with election timeout", ElectionTimeout) etcds[num], err = os.StartProcess("etcd", argGroup[num], procAttr) } }