fix int test

pull/11666/head
Ilya Zuyev 2021-06-10 23:03:00 -07:00
parent e6cd1d5b1c
commit e50e9de069
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ func validateContainerdSystemd(ctx context.Context, t *testing.T, profile string
if err != nil {
t.Errorf("failed to get docker cgroup driver. args %q: %v", rr.Command(), err)
}
if !strings.Contains(rr.Output(), "systemd_cgroup = true") {
if !strings.Contains(rr.Output(), "SystemdCgroup = true") {
t.Fatalf("expected systemd cgroup driver, got: %v", rr.Output())
}
}