summaryrefslogtreecommitdiff
path: root/test/system/140-diff.bats
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-10-20 07:25:35 -0400
committerGitHub <noreply@github.com>2020-10-20 07:25:35 -0400
commitf9450300b73e18890f7264bffca35b291aa3176e (patch)
tree1764522482b97b6fdf86c21e5d2505aa6e49b89c /test/system/140-diff.bats
parente944544271d9e515bdfc7e364e3ddf372b0dd378 (diff)
parentb23d430516a20f0274c200c2d67bf0e1b05bff18 (diff)
downloadpodman-f9450300b73e18890f7264bffca35b291aa3176e.tar.gz
podman-f9450300b73e18890f7264bffca35b291aa3176e.tar.bz2
podman-f9450300b73e18890f7264bffca35b291aa3176e.zip
Merge pull request #8061 from edsantiago/bats
System tests: remove some misleading 'run's
Diffstat (limited to 'test/system/140-diff.bats')
-rw-r--r--test/system/140-diff.bats6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/system/140-diff.bats b/test/system/140-diff.bats
index d0f33e438..1277f9bbe 100644
--- a/test/system/140-diff.bats
+++ b/test/system/140-diff.bats
@@ -34,8 +34,8 @@ load helpers
@test "podman diff with buildah container " {
rand_file=$(random_string 10)
- run buildah from --name buildahctr $IMAGE
- run buildah run buildahctr sh -c "touch /$rand_file;rm /etc/services"
+ buildah from --name buildahctr $IMAGE
+ buildah run buildahctr sh -c "touch /$rand_file;rm /etc/services"
run_podman diff --format json buildahctr
@@ -51,7 +51,7 @@ load helpers
is "$result" "${expect[$field]}" "$field"
done
- run buildah rm buildahctr
+ buildah rm buildahctr
}
# vim: filetype=sh