diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-06-03 20:12:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-03 20:12:05 +0200 |
commit | bba0a8be1a715fb0903ffc69abd5700a624d47e4 (patch) | |
tree | 8fa07d2a1bc39fb1eac3151de45e5bfcfedcf8a3 /test/e2e/diff_test.go | |
parent | cbfb4980ce7d9e6ed1ea769d0f42c52e1ad0bffa (diff) | |
parent | 8153f299ad3b663f73257cbee58875da13dc8cf8 (diff) | |
download | podman-bba0a8be1a715fb0903ffc69abd5700a624d47e4.tar.gz podman-bba0a8be1a715fb0903ffc69abd5700a624d47e4.tar.bz2 podman-bba0a8be1a715fb0903ffc69abd5700a624d47e4.zip |
Merge pull request #6465 from rhatdan/remote
Add more Remote tests
Diffstat (limited to 'test/e2e/diff_test.go')
-rw-r--r-- | test/e2e/diff_test.go | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/e2e/diff_test.go b/test/e2e/diff_test.go index d273f9463..fbbe49eac 100644 --- a/test/e2e/diff_test.go +++ b/test/e2e/diff_test.go @@ -61,7 +61,6 @@ var _ = Describe("Podman diff", func() { }) It("podman diff container and committed image", func() { - SkipIfRemote() session := podmanTest.Podman([]string{"run", "--name=diff-test", ALPINE, "touch", "/tmp/diff-test"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) @@ -82,11 +81,10 @@ var _ = Describe("Podman diff", func() { }) It("podman diff latest container", func() { - SkipIfRemote() - session := podmanTest.Podman([]string{"run", "--name=diff-test", ALPINE, "touch", "/tmp/diff-test"}) + session := podmanTest.Podman([]string{"run", "--name", "diff-test", ALPINE, "touch", "/tmp/diff-test"}) session.WaitWithDefaultTimeout() Expect(session.ExitCode()).To(Equal(0)) - session = podmanTest.Podman([]string{"diff", "-l"}) + session = podmanTest.Podman([]string{"diff", "diff-test"}) session.WaitWithDefaultTimeout() containerDiff := session.OutputToStringArray() sort.Strings(containerDiff) |