diff options
author | Yuan-Hao Chen <yhchen0906@gmail.com> | 2020-06-19 00:59:50 +0800 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2020-06-24 14:29:00 -0400 |
commit | 27120bfbab65e4a423e4801a0d93bdb661779a98 (patch) | |
tree | 3faadfefac0f5cc81ed644d48e4bd801478a57de /test/e2e | |
parent | 4af2081424c8fa7ac191e9c5231d2429edb8327c (diff) | |
download | podman-27120bfbab65e4a423e4801a0d93bdb661779a98.tar.gz podman-27120bfbab65e4a423e4801a0d93bdb661779a98.tar.bz2 podman-27120bfbab65e4a423e4801a0d93bdb661779a98.zip |
correct the absolute path of `rm` executable
Signed-off-by: Yuan-Hao Chen <yhchen0906@gmail.com>
Diffstat (limited to 'test/e2e')
-rw-r--r-- | test/e2e/generate_systemd_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/generate_systemd_test.go b/test/e2e/generate_systemd_test.go index 497e8f71e..f43a4f865 100644 --- a/test/e2e/generate_systemd_test.go +++ b/test/e2e/generate_systemd_test.go @@ -362,7 +362,7 @@ var _ = Describe("Podman generate systemd", func() { found, _ = session.GrepString("pod create --infra-conmon-pidfile %t/pod-foo.pid --pod-id-file %t/pod-foo.pod-id --name foo") Expect(found).To(BeTrue()) - found, _ = session.GrepString("ExecStartPre=/usr/bin/rm -f %t/pod-foo.pid %t/pod-foo.pod-id") + found, _ = session.GrepString("ExecStartPre=/bin/rm -f %t/pod-foo.pid %t/pod-foo.pod-id") Expect(found).To(BeTrue()) found, _ = session.GrepString("pod stop --ignore --pod-id-file %t/pod-foo.pod-id -t 10") |