commit | cc08b11c9ba9ee60a357ae1b7541388d9f05ec70 | [log] [tgz] |
---|---|---|
author | Jamie Hannaford <jamie.hannaford@rackspace.com> | Tue Oct 28 16:53:48 2014 +0100 |
committer | Jamie Hannaford <jamie.hannaford@rackspace.com> | Tue Oct 28 16:57:02 2014 +0100 |
tree | 31533266ef59b09ca2b99648128eec9c875751ef | |
parent | cc1a89183c8c781073f0d71aaff63b320f204a45 [diff] |
Removing this because it's pointless and breaks the universe
diff --git a/util_test.go b/util_test.go index 52ab801..8aa856a 100644 --- a/util_test.go +++ b/util_test.go
@@ -8,14 +8,6 @@ ) func TestWaitFor(t *testing.T) { - err := WaitFor(0, func() (bool, error) { - time.Sleep(1 * time.Second) - return true, nil - }) - if err == nil { - t.Errorf("Expected error: 'Time out in WaitFor'") - } - err = WaitFor(5, func() (bool, error) { return true, nil })