summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-04-14 07:18:52 -0400
committerGitHub <noreply@github.com>2022-04-14 07:18:52 -0400
commit001f619eab780721abe52ee72fe3c87caa7c652f (patch)
treee221f394a1a3f583f315494ca300160fa52ab2f2 /test
parent15712c76fb198cec7509ff0cf401e357401d2d7d (diff)
parent97f93dc78e61820196f2adcc06ab8ec145ef6703 (diff)
downloadpodman-001f619eab780721abe52ee72fe3c87caa7c652f.tar.gz
podman-001f619eab780721abe52ee72fe3c87caa7c652f.tar.bz2
podman-001f619eab780721abe52ee72fe3c87caa7c652f.zip
Merge pull request #13872 from vrothberg/revert-size
Revert "images --size"
Diffstat (limited to 'test')
-rw-r--r--test/system/010-images.bats11
1 files changed, 0 insertions, 11 deletions
diff --git a/test/system/010-images.bats b/test/system/010-images.bats
index 352c3aa95..257508418 100644
--- a/test/system/010-images.bats
+++ b/test/system/010-images.bats
@@ -312,15 +312,4 @@ Deleted: $pauseID"
is "$output" ""
}
-@test "podman images --size" {
- run_podman images
- is "${lines[0]}" "REPOSITORY.*TAG.*IMAGE ID.*CREATED.*SIZE"
- run_podman images --noheading --format "{{.Size}}"
- is "$output" ".* MB"
- run_podman images --size=false
- is "${lines[0]}" "REPOSITORY.*TAG.*IMAGE ID.*CREATED"
- run_podman images --noheading --format "{{.Size}}" --size=false
- is "$output" "0 B"
-}
-
# vim: filetype=sh