From 9e5637f9e8883cc19d18084300f3eb9948b46933 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Mon, 11 Dec 2017 15:41:19 -0500 Subject: Fix network configurations to have a valid CIDR subnet Signed-off-by: Matthew Heon Closes: #109 Approved by: mheon --- test/helpers.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test') diff --git a/test/helpers.bash b/test/helpers.bash index b14802afc..abf481c9a 100644 --- a/test/helpers.bash +++ b/test/helpers.bash @@ -205,7 +205,7 @@ function prepare_network_conf() { "ipMasq": true, "ipam": { "type": "host-local", - "subnet": "$1", + "subnet": "10.20.40.0/24", "routes": [ { "dst": "0.0.0.0/0" } ] @@ -235,7 +235,7 @@ function prepare_plugin_test_args_network_conf() { "ipMasq": true, "ipam": { "type": "host-local", - "subnet": "$1", + "subnet": "10.20.40.0/24", "routes": [ { "dst": "0.0.0.0/0" } ] -- cgit v1.2.3-54-g00ecf