Move GenerateRuntimeOptions() to pkg/cri/config

Signed-off-by: Kirtana Ashok <kiashok@microsoft.com>
This commit is contained in:
Kirtana Ashok
2023-12-07 12:23:00 -08:00
parent a68efb1bad
commit 25b052cbca
6 changed files with 49 additions and 49 deletions

View File

@@ -175,7 +175,7 @@ systemd_cgroup = true
} {
test := test
t.Run(test.desc, func(t *testing.T) {
opts, err := generateRuntimeOptions(test.r)
opts, err := criconfig.GenerateRuntimeOptions(test.r)
assert.NoError(t, err)
assert.Equal(t, test.expectedOptions, opts)
})