Skip to content

Commit

Permalink
tests: Fix tests that used old pullRequiredLCOWImages func name
Browse files Browse the repository at this point in the history
Lack of rebase when merging
microsoft#1180 resulted in some
test files being out of date and containing old helper function
name

Signed-off-by: Maksim An <maksiman@microsoft.com>
  • Loading branch information
anmaxvl committed Sep 29, 2021
1 parent 8debf44 commit 6c83274
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/cri-containerd/container_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down Expand Up @@ -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())
Expand Down

0 comments on commit 6c83274

Please sign in to comment.