diff options
author | Giuseppe Scrivano <gscrivan@redhat.com> | 2019-02-21 11:27:34 +0100 |
---|---|---|
committer | Giuseppe Scrivano <giuseppe@scrivano.org> | 2019-02-22 23:55:22 +0100 |
commit | 7e920e486512d350faa43306d2cda12fdad887e1 (patch) | |
tree | 6c2885f67ad56d691b60e722d462b0a054f5a9b2 /test/e2e/libpod_suite_test.go | |
parent | 8984ba7461edb0850c0a79e975d1ca7ce516a064 (diff) | |
download | podman-7e920e486512d350faa43306d2cda12fdad887e1.tar.gz podman-7e920e486512d350faa43306d2cda12fdad887e1.tar.bz2 podman-7e920e486512d350faa43306d2cda12fdad887e1.zip |
tests, rootless: use relative path for export test
Signed-off-by: Giuseppe Scrivano <gscrivan@redhat.com>
Diffstat (limited to 'test/e2e/libpod_suite_test.go')
-rw-r--r-- | test/e2e/libpod_suite_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/e2e/libpod_suite_test.go b/test/e2e/libpod_suite_test.go index 4b4baa93c..33e05b872 100644 --- a/test/e2e/libpod_suite_test.go +++ b/test/e2e/libpod_suite_test.go @@ -28,8 +28,8 @@ func (p *PodmanTestIntegration) Podman(args []string) *PodmanSessionIntegration } // PodmanAsUser is the exec call to podman on the filesystem with the specified uid/gid and environment -func (p *PodmanTestIntegration) PodmanAsUser(args []string, uid, gid uint32, env []string) *PodmanSessionIntegration { - podmanSession := p.PodmanAsUserBase(args, uid, gid, env) +func (p *PodmanTestIntegration) PodmanAsUser(args []string, uid, gid uint32, cwd string, env []string) *PodmanSessionIntegration { + podmanSession := p.PodmanAsUserBase(args, uid, gid, cwd, env) return &PodmanSessionIntegration{podmanSession} } |