diff options
author | Miloslav Trmač <mitr@redhat.com> | 2021-10-21 22:11:37 +0200 |
---|---|---|
committer | Miloslav Trmač <mitr@redhat.com> | 2021-10-25 18:02:41 +0200 |
commit | c872788e4ed230ceb081df3605497f22c8df270a (patch) | |
tree | 3e318f061c3e02130cf70ed24b2f37545fdba3cb /test/e2e/trust_test.go | |
parent | dbe770e3ce2ac2e34ffa8e28b80df57eb0182a68 (diff) | |
download | podman-c872788e4ed230ceb081df3605497f22c8df270a.tar.gz podman-c872788e4ed230ceb081df3605497f22c8df270a.tar.bz2 podman-c872788e4ed230ceb081df3605497f22c8df270a.zip |
Use INTEGRATION_ROOT instead of current directory
Should not change behavior, just to set a consistent
precedent for code introduced in future commits.
Signed-off-by: Miloslav Trmač <mitr@redhat.com>
Diffstat (limited to 'test/e2e/trust_test.go')
-rw-r--r-- | test/e2e/trust_test.go | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/test/e2e/trust_test.go b/test/e2e/trust_test.go index 7f97f280a..26b58737c 100644 --- a/test/e2e/trust_test.go +++ b/test/e2e/trust_test.go @@ -14,7 +14,8 @@ import ( var _ = Describe("Podman trust", func() { var ( - tempdir string + tempdir string + err error podmanTest *PodmanTestIntegration ) @@ -38,11 +39,7 @@ var _ = Describe("Podman trust", func() { }) It("podman image trust show", func() { - path, err := os.Getwd() - if err != nil { - os.Exit(1) - } - session := podmanTest.Podman([]string{"image", "trust", "show", "--registrypath", filepath.Dir(path), "--policypath", filepath.Join(filepath.Dir(path), "policy.json")}) + session := podmanTest.Podman([]string{"image", "trust", "show", "--registrypath", filepath.Join(INTEGRATION_ROOT, "test"), "--policypath", filepath.Join(INTEGRATION_ROOT, "test/policy.json")}) session.WaitWithDefaultTimeout() Expect(session).Should(Exit(0)) outArray := session.OutputToStringArray() |