summaryrefslogtreecommitdiff
path: root/test/utils/utils.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-04-21 17:27:04 -0400
committerGitHub <noreply@github.com>2022-04-21 17:27:04 -0400
commitd5f568efe37bbfdbca4b5e36afb7568c7eac3740 (patch)
treea0a85c54cb96456ded30ffb798040428787f0e22 /test/utils/utils.go
parentbfd617ebbe622e7147d0ff44c3a1089ee15eb7f4 (diff)
parentc67d6a52c42c97b6b8f127eb66f21871058e36fa (diff)
downloadpodman-d5f568efe37bbfdbca4b5e36afb7568c7eac3740.tar.gz
podman-d5f568efe37bbfdbca4b5e36afb7568c7eac3740.tar.bz2
podman-d5f568efe37bbfdbca4b5e36afb7568c7eac3740.zip
Merge pull request #13957 from cevich/fix_remote_netavark
Fix using --network-backend on podman-remote
Diffstat (limited to 'test/utils/utils.go')
-rw-r--r--test/utils/utils.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/utils/utils.go b/test/utils/utils.go
index da56a3a2e..39a0ac875 100644
--- a/test/utils/utils.go
+++ b/test/utils/utils.go
@@ -110,7 +110,7 @@ func (p *PodmanTest) PodmanAsUserBase(args []string, uid, gid uint32, cwd string
}
runCmd := append(wrapper, podmanBinary)
- if p.NetworkBackend == Netavark {
+ if !p.RemoteTest && p.NetworkBackend == Netavark {
runCmd = append(runCmd, []string{"--network-backend", "netavark"}...)
}