diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-10-15 06:19:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-15 06:19:07 -0400 |
commit | ef7f584acf65692a6b2a11a352a8d09d8a604ff6 (patch) | |
tree | 85044a2360ddbb7a7845de11ec1016bf6996baab /test/system/helpers.bash | |
parent | 41eda417fe4565cab26d704daedca0d285327f31 (diff) | |
parent | 1646da834c06d55e7bf56b272f2666659117e6fa (diff) | |
download | podman-ef7f584acf65692a6b2a11a352a8d09d8a604ff6.tar.gz podman-ef7f584acf65692a6b2a11a352a8d09d8a604ff6.tar.bz2 podman-ef7f584acf65692a6b2a11a352a8d09d8a604ff6.zip |
Merge pull request #8025 from edsantiago/bats
System test additions
Diffstat (limited to 'test/system/helpers.bash')
-rw-r--r-- | test/system/helpers.bash | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/system/helpers.bash b/test/system/helpers.bash index c6c2c12df..4591c9015 100644 --- a/test/system/helpers.bash +++ b/test/system/helpers.bash @@ -247,7 +247,7 @@ function is_cgroupsv1() { function is_cgroupsv2() { cgroup_type=$(stat -f -c %T /sys/fs/cgroup) - test "$cgroup_type" = "cgroupfs" + test "$cgroup_type" = "cgroup2fs" } ########################### |