aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2022-01-19 11:22:20 +1100
committerMatthew Heon <mheon@redhat.com>2022-02-23 14:33:00 -0500
commitc559e4e6fb77c062727da365f482989c8d2a3cad (patch)
tree8a69525ec0b3a255054c4d9ea7cb45e713a97fca
parent3718d096b11458267bac3eee776c3d598aeefa57 (diff)
downloadpodman-c559e4e6fb77c062727da365f482989c8d2a3cad.tar.gz
podman-c559e4e6fb77c062727da365f482989c8d2a3cad.tar.bz2
podman-c559e4e6fb77c062727da365f482989c8d2a3cad.zip
tests: Remove inaccurate comment
This comment refers to overiding $PODMAN although the code below does nothing of the sort. Presumbly the comment has been outdated by altering the containers.conf / $CONTAINERS_CONF instead. Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
-rw-r--r--test/system/helpers.bash3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/system/helpers.bash b/test/system/helpers.bash
index 676f80013..221315b97 100644
--- a/test/system/helpers.bash
+++ b/test/system/helpers.bash
@@ -37,9 +37,6 @@ fi
# while retaining the ability to include these if they so desire.
# Some CI systems set this to runc, overriding the default crun.
-# Although it would be more elegant to override options in run_podman(),
-# we instead override $PODMAN itself because some tests (170-run-userns)
-# have to invoke $PODMAN directly.
if [[ -n $OCI_RUNTIME ]]; then
if [[ -z $CONTAINERS_CONF ]]; then
# FIXME: BATS provides no mechanism for end-of-run cleanup[1]; how