From d7f43e6772b734d0a7a7533bf94a61939ac1ebe5 Mon Sep 17 00:00:00 2001 From: Eng Zer Jun Date: Thu, 5 May 2022 21:39:46 +0800 Subject: test: fix failing TestPostDeleteHooks We no longer create the temporary directory as `libpod_test_*`. The directory returned by `t.TempDir()` is TestPostDeleteHooks/001 Signed-off-by: Eng Zer Jun --- libpod/container_internal_test.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'libpod') diff --git a/libpod/container_internal_test.go b/libpod/container_internal_test.go index 05fdba04f..1b4e62e91 100644 --- a/libpod/container_internal_test.go +++ b/libpod/container_internal_test.go @@ -4,10 +4,8 @@ import ( "context" "fmt" "io/ioutil" - "os" "path/filepath" "runtime" - "strings" "testing" rspec "github.com/opencontainers/runtime-spec/specs-go" @@ -58,7 +56,7 @@ func TestPostDeleteHooks(t *testing.T) { t.Fatal(err) } - stateRegexp := `{"ociVersion":"1\.0\.2-dev","id":"123abc","status":"stopped","bundle":"` + strings.TrimSuffix(os.TempDir(), "/") + `/libpod_test_[0-9]*","annotations":{"a":"b"}}` + stateRegexp := `{"ociVersion":"1\.0\.2-dev","id":"123abc","status":"stopped","bundle":"` + dir + `","annotations":{"a":"b"}}` for _, p := range []string{statePath, copyPath} { path := p t.Run(path, func(t *testing.T) { -- cgit v1.2.3-54-g00ecf