mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-09-09 17:17:53 +00:00
Bumps [github.com/onsi/gomega](https://github.com/onsi/gomega) from 1.12.0 to 1.13.0. - [Release notes](https://github.com/onsi/gomega/releases) - [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md) - [Commits](https://github.com/onsi/gomega/compare/v1.12.0...v1.13.0) Signed-off-by: dependabot[bot] <support@github.com>
40 lines
914 B
Go
40 lines
914 B
Go
package gomega
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/onsi/gomega/internal/defaults"
|
|
)
|
|
|
|
const (
|
|
ConsistentlyDurationEnvVarName = "GOMEGA_DEFAULT_CONSISTENTLY_DURATION"
|
|
ConsistentlyPollingIntervalEnvVarName = "GOMEGA_DEFAULT_CONSISTENTLY_POLLING_INTERVAL"
|
|
EventuallyTimeoutEnvVarName = "GOMEGA_DEFAULT_EVENTUALLY_TIMEOUT"
|
|
EventuallyPollingIntervalEnvVarName = "GOMEGA_DEFAULT_EVENTUALLY_POLLING_INTERVAL"
|
|
)
|
|
|
|
func init() {
|
|
defaults.SetDurationFromEnv(
|
|
os.Getenv,
|
|
SetDefaultConsistentlyDuration,
|
|
ConsistentlyDurationEnvVarName,
|
|
)
|
|
|
|
defaults.SetDurationFromEnv(
|
|
os.Getenv,
|
|
SetDefaultConsistentlyPollingInterval,
|
|
ConsistentlyPollingIntervalEnvVarName,
|
|
)
|
|
|
|
defaults.SetDurationFromEnv(
|
|
os.Getenv,
|
|
SetDefaultEventuallyTimeout,
|
|
EventuallyTimeoutEnvVarName,
|
|
)
|
|
|
|
defaults.SetDurationFromEnv(
|
|
os.Getenv,
|
|
SetDefaultEventuallyPollingInterval,
|
|
EventuallyPollingIntervalEnvVarName,
|
|
)
|
|
}
|