diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-10-20 07:25:35 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-20 07:25:35 -0400 |
commit | f9450300b73e18890f7264bffca35b291aa3176e (patch) | |
tree | 1764522482b97b6fdf86c21e5d2505aa6e49b89c /test/system/140-diff.bats | |
parent | e944544271d9e515bdfc7e364e3ddf372b0dd378 (diff) | |
parent | b23d430516a20f0274c200c2d67bf0e1b05bff18 (diff) | |
download | podman-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.bats | 6 |
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 |