update docs

pull/11516/head
Medya Gh 2021-05-26 18:19:53 -07:00
parent 04bfa20d48
commit e334761327
2 changed files with 4 additions and 4 deletions

View File

@ -166,7 +166,7 @@ to check existence of the test file
#### validateCertSync
to check existence of the test certificate
#### validateExtraRuntimeDisabled
#### validateNotActiveRuntimeDisabled
asserts that for a given runtime, the other runtimes disabled, for example for containerd runtime, docker and crio needs to be not running
#### validateUpdateContextCmd

View File

@ -138,7 +138,7 @@ func TestFunctional(t *testing.T) {
{"RemoveImage", validateRemoveImage},
{"BuildImage", validateBuildImage},
{"ListImages", validateListImages},
{"ExtraRuntimeDisabled", validateExtraRuntimeDisabled},
{"NonActiveRuntimeDisabled", validateNotActiveRuntimeDisabled},
}
for _, tc := range tests {
tc := tc
@ -1664,8 +1664,8 @@ func validateCertSync(ctx context.Context, t *testing.T, profile string) {
}
}
// validateExtraRuntimeDisabled asserts that for a given runtime, the other runtimes disabled, for example for containerd runtime, docker and crio needs to be not running
func validateExtraRuntimeDisabled(ctx context.Context, t *testing.T, profile string) {
// validateNotActiveRuntimeDisabled asserts that for a given runtime, the other runtimes disabled, for example for containerd runtime, docker and crio needs to be not running
func validateNotActiveRuntimeDisabled(ctx context.Context, t *testing.T, profile string) {
disableMap := map[string][]string{
"docker": []string{"crio"},
"containerd": []string{"docker", "crio"},