terraform/builtin/providers/librato/common_helpers_test.go

13 lines
161 B
Go
Raw Normal View History

2017-05-18 15:37:16 +02:00
package librato
import (
"testing"
"time"
)
func sleep(t *testing.T, amount time.Duration) func() {
return func() {
time.Sleep(amount * time.Second)
}
}