From b39741b50623a4f7d1d7e3a426f454b3356b9b15 Mon Sep 17 00:00:00 2001 From: Francesco Romani Date: Tue, 10 Jun 2025 19:25:48 +0200 Subject: [PATCH] e2e: node: serial: fix cgroup path with crio the path construction with crio is wrong (typo). Signed-off-by: Francesco Romani --- test/e2e_node/cpumanager_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e_node/cpumanager_test.go b/test/e2e_node/cpumanager_test.go index 23def4ac1cc..31a306973da 100644 --- a/test/e2e_node/cpumanager_test.go +++ b/test/e2e_node/cpumanager_test.go @@ -1435,7 +1435,7 @@ func makeCgroupPathForContainer(pod *v1.Pod, ctnName string, isInit bool) (strin func containerCgroupPathPrefixFromDriver(runtimeName string) string { if runtimeName == "cri-o" { - return "cri-o" + return "crio" } return "cri-containerd" }