Update godeps for etcd 3.0.4

This commit is contained in:
Timothy St. Clair
2016-07-22 13:54:40 -05:00
parent 456c43c22d
commit 5f008faa8b
457 changed files with 25492 additions and 10481 deletions

View File

@@ -1,3 +0,0 @@
language: go
go:
- 1.3

View File

@@ -1,9 +1,6 @@
clockwork
=========
[![Build Status](https://travis-ci.org/jonboulle/clockwork.png?branch=master)](https://travis-ci.org/jonboulle/clockwork)
[![godoc](https://godoc.org/github.com/jonboulle/clockwork?status.svg)](http://godoc.org/github.com/jonboulle/clockwork)
a simple fake clock for golang
# Usage
@@ -58,4 +55,4 @@ See [example_test.go](example_test.go) for a full example.
# Credits
clockwork is inspired by @wickman's [threaded fake clock](https://gist.github.com/wickman/3840816), and the [Golang playground](http://blog.golang.org/playground#Faking time)
Inspired by @wickman's [threaded fake clock](https://gist.github.com/wickman/3840816), and the [Golang playground](http://blog.golang.org/playground#Faking time)

View File

@@ -36,9 +36,6 @@ func NewRealClock() Clock {
func NewFakeClock() FakeClock {
return &fakeClock{
l: sync.RWMutex{},
// use a fixture that does not fulfill Time.IsZero()
time: time.Date(1900, time.January, 1, 0, 0, 0, 0, time.UTC),
}
}