From 6c832747e2f84951eba8672900bff4d75ce29dec Mon Sep 17 00:00:00 2001 From: Maksim An Date: Wed, 29 Sep 2021 15:27:45 -0700 Subject: [PATCH] tests: Fix tests that used old pullRequiredLCOWImages func name Lack of rebase when merging https://github.com/microsoft/hcsshim/pull/1180 resulted in some test files being out of date and containing old helper function name Signed-off-by: Maksim An --- test/cri-containerd/container_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/cri-containerd/container_test.go b/test/cri-containerd/container_test.go index 842f6f5229..3116ecc896 100644 --- a/test/cri-containerd/container_test.go +++ b/test/cri-containerd/container_test.go @@ -897,7 +897,7 @@ func Test_CreateContainer_HugePageMount_LCOW(t *testing.T) { func Test_RunContainer_ExecUser_LCOW(t *testing.T) { requireFeatures(t, featureLCOW) - pullRequiredLcowImages(t, []string{imageLcowK8sPause, imageLcowCustomUser}) + pullRequiredLCOWImages(t, []string{imageLcowK8sPause, imageLcowCustomUser}) client := newTestRuntimeClient(t) ctx, cancel := context.WithCancel(context.Background()) @@ -950,7 +950,7 @@ func Test_RunContainer_ExecUser_LCOW(t *testing.T) { func Test_RunContainer_ExecUser_Root_LCOW(t *testing.T) { requireFeatures(t, featureLCOW) - pullRequiredLcowImages(t, []string{imageLcowK8sPause, imageLcowCustomUser}) + pullRequiredLCOWImages(t, []string{imageLcowK8sPause, imageLcowCustomUser}) client := newTestRuntimeClient(t) ctx, cancel := context.WithCancel(context.Background())