From 4bf8b55594c084d47f2a39300a205316c721b52e Mon Sep 17 00:00:00 2001 From: Rodrigo Campos Date: Tue, 31 Oct 2023 17:38:54 +0100 Subject: [PATCH] libct: Remove old comment We changed it in PR: https://github.com/opencontainers/runtime-spec/pull/1225 But we missed to remove this comment. Signed-off-by: Rodrigo Campos --- libcontainer/configs/validate/validator_test.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/libcontainer/configs/validate/validator_test.go b/libcontainer/configs/validate/validator_test.go index 176527ecc60..7de9b0f9061 100644 --- a/libcontainer/configs/validate/validator_test.go +++ b/libcontainer/configs/validate/validator_test.go @@ -395,12 +395,10 @@ func TestValidateMounts(t *testing.T) { isErr bool dest string }{ - // TODO (runc v1.x.x): make these relative paths an error. See https://github.com/opencontainers/runc/pull/3004 {isErr: false, dest: "not/an/abs/path"}, {isErr: false, dest: "./rel/path"}, {isErr: false, dest: "./rel/path"}, {isErr: false, dest: "../../path"}, - {isErr: false, dest: "/abs/path"}, {isErr: false, dest: "/abs/but/../unclean"}, }