aboutsummaryrefslogtreecommitdiff
path: root/test/system/005-info.bats
diff options
context:
space:
mode:
authorBrent Baude <bbaude@redhat.com>2020-04-17 11:01:45 -0500
committerBrent Baude <bbaude@redhat.com>2020-04-17 13:22:06 -0500
commit44a8cf867665927111fe9ea03711c8fabfc7d4a2 (patch)
treecac0714b1d0e4ae4636c03191f4752235dd1a38d /test/system/005-info.bats
parentd68b028c9440cd3f952327b05f1bc8dee00ab98a (diff)
downloadpodman-44a8cf867665927111fe9ea03711c8fabfc7d4a2.tar.gz
podman-44a8cf867665927111fe9ea03711c8fabfc7d4a2.tar.bz2
podman-44a8cf867665927111fe9ea03711c8fabfc7d4a2.zip
Fixes for system tests
Various fixes to protect against regressions in system tests Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'test/system/005-info.bats')
-rw-r--r--test/system/005-info.bats14
1 files changed, 7 insertions, 7 deletions
diff --git a/test/system/005-info.bats b/test/system/005-info.bats
index c53ba8125..3c06103e8 100644
--- a/test/system/005-info.bats
+++ b/test/system/005-info.bats
@@ -8,19 +8,19 @@ load helpers
run_podman info
expected_keys="
-buildahVersion: *[0-9.]\\\+
+buildahversion: *[0-9.]\\\+
conmon:\\\s\\\+package:
distribution:
-ociRuntime:\\\s\\\+name:
+ociruntime:\\\s\\\+name:
os:
rootless:
registries:
store:
-graphDriverName:
-graphRoot:
-graphStatus:
-imageStore:\\\s\\\+number: 1
-runRoot:
+graphdrivername:
+graphroot:
+graphstatus:
+imagestore:\\\s\\\+number: 1
+runroot:
"
while read expect; do
is "$output" ".*$expect" "output includes '$expect'"