diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-10-04 15:01:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-04 15:01:38 -0400 |
commit | 2f72f17a114f4e20b56deb2c21908d1d4610919c (patch) | |
tree | 27d03a819da8a21414a7a312b5d9d3b8c319ba42 /test | |
parent | 800e91dafd47c284489be586bd18c3cdf7dc5737 (diff) | |
parent | a726043d0b5c4ff9e59b01f2a48c575d53d67ed0 (diff) | |
download | podman-2f72f17a114f4e20b56deb2c21908d1d4610919c.tar.gz podman-2f72f17a114f4e20b56deb2c21908d1d4610919c.tar.bz2 podman-2f72f17a114f4e20b56deb2c21908d1d4610919c.zip |
Merge pull request #11846 from Luap99/network-reload
CNI networks: reload networks if needed
Diffstat (limited to 'test')
-rw-r--r-- | test/apiv2/35-networks.at | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/apiv2/35-networks.at b/test/apiv2/35-networks.at index a4cb5a480..fd8dfd32b 100644 --- a/test/apiv2/35-networks.at +++ b/test/apiv2/35-networks.at @@ -131,8 +131,8 @@ t DELETE libpod/networks/network2 200 \ .[0].Err=null # test until filter - libpod api -t POST libpod/networks/create name='"network5"' labels='{"xyz":""}' 200 \ - .name=network5 +# create network via cli to test that the server can use it +podman network create --label xyz network5 # with date way back in the past, network should not be deleted t POST libpod/networks/prune?filters='{"until":["500000"]}' 200 |