diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-03-22 17:40:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-22 17:40:20 -0400 |
commit | 31d14457a5636df62c755480ee10f1946a5bc8b0 (patch) | |
tree | f01a88bb0a2f83860a31745eb7ae2b4e1101cffe /test | |
parent | 98687ad4a603d5011db75a10e13599c5d241472d (diff) | |
parent | 19bf7adedbfe6e65f29e9fa53c5c4a1d4b110cc5 (diff) | |
download | podman-31d14457a5636df62c755480ee10f1946a5bc8b0.tar.gz podman-31d14457a5636df62c755480ee10f1946a5bc8b0.tar.bz2 podman-31d14457a5636df62c755480ee10f1946a5bc8b0.zip |
Merge pull request #5582 from kunalkushwaha/bugfix-5001
Improved readability in image json output
Diffstat (limited to 'test')
-rw-r--r-- | test/system/010-images.bats | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/system/010-images.bats b/test/system/010-images.bats index 3224c9b42..6957d4830 100644 --- a/test/system/010-images.bats +++ b/test/system/010-images.bats @@ -27,11 +27,11 @@ load helpers @test "podman images - json" { # 'created': podman includes fractional seconds, podman-remote does not tests=" -names[0] | $PODMAN_TEST_IMAGE_FQN -id | [0-9a-f]\\\{64\\\} -digest | sha256:[0-9a-f]\\\{64\\\} -created | [0-9-]\\\+T[0-9:.]\\\+Z -size | [0-9]\\\+ +Names[0] | $PODMAN_TEST_IMAGE_FQN +ID | [0-9a-f]\\\{64\\\} +Digest | sha256:[0-9a-f]\\\{64\\\} +CreatedAt | [0-9-]\\\+T[0-9:.]\\\+Z +Size | [0-9]\\\+ " run_podman images -a --format json |