Merge pull request #23041 from AkihiroSuda/fixPkgDiscoveryKvTestTooShortSleep

Fix too short time.Sleep() in pkg/discovery/kv/kv_test.go
This commit is contained in:
Brian Goff 2016-05-27 21:11:33 -04:00
commit 9369457603

View file

@ -251,7 +251,7 @@ func (ds *DiscoverySuite) TestWatch(c *check.C) {
close(mockCh)
// Give it enough time to call WatchTree.
time.Sleep(3)
time.Sleep(3 * time.Second)
// Stop and make sure it closes all channels.
close(stopCh)