From b05b384ae5d839bacdcec99056e329d1fc4f8962 Mon Sep 17 00:00:00 2001 From: Maksim An Date: Fri, 1 Oct 2021 09:48:47 -0700 Subject: [PATCH] tests: Fix ExecUser LCOW tests using old function signature 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 3116ecc896..a603c74c41 100644 --- a/test/cri-containerd/container_test.go +++ b/test/cri-containerd/container_test.go @@ -903,7 +903,7 @@ func Test_RunContainer_ExecUser_LCOW(t *testing.T) { ctx, cancel := context.WithCancel(context.Background()) defer cancel() - sandboxRequest := getRunPodSandboxRequest(t, lcowRuntimeHandler, nil) + sandboxRequest := getRunPodSandboxRequest(t, lcowRuntimeHandler) podID := runPodSandbox(t, client, ctx, sandboxRequest) defer removePodSandbox(t, client, ctx, podID) @@ -956,7 +956,7 @@ func Test_RunContainer_ExecUser_Root_LCOW(t *testing.T) { ctx, cancel := context.WithCancel(context.Background()) defer cancel() - sandboxRequest := getRunPodSandboxRequest(t, lcowRuntimeHandler, nil) + sandboxRequest := getRunPodSandboxRequest(t, lcowRuntimeHandler) podID := runPodSandbox(t, client, ctx, sandboxRequest) defer removePodSandbox(t, client, ctx, podID)