mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
fb7dc13dfe
updated few packages in go.mod to latest available release. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
23 lines
342 B
Go
23 lines
342 B
Go
package global
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/onsi/ginkgo/internal/failer"
|
|
"github.com/onsi/ginkgo/internal/suite"
|
|
)
|
|
|
|
const DefaultTimeout = time.Duration(1 * time.Second)
|
|
|
|
var Suite *suite.Suite
|
|
var Failer *failer.Failer
|
|
|
|
func init() {
|
|
InitializeGlobals()
|
|
}
|
|
|
|
func InitializeGlobals() {
|
|
Failer = failer.New()
|
|
Suite = suite.New(Failer)
|
|
}
|