aboutsummaryrefslogtreecommitdiffstats
path: root/lib/common_test/test
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2019-02-11 13:40:53 +0100
committerSiri Hansen <[email protected]>2019-02-11 13:40:53 +0100
commitb34fc22d8b336b9b5a3d02d30ea22e16f3f1ddce (patch)
tree9d015d5d98d89f21735eebf6cb9e041d1368e50e /lib/common_test/test
parent33d31c84a2ed182c2d1c22cd3841a700b00f5d48 (diff)
parent871f133a49ecdc59a4e9d81d532ac6d7d78aa6db (diff)
downloadotp-b34fc22d8b336b9b5a3d02d30ea22e16f3f1ddce.tar.gz
otp-b34fc22d8b336b9b5a3d02d30ea22e16f3f1ddce.tar.bz2
otp-b34fc22d8b336b9b5a3d02d30ea22e16f3f1ddce.zip
Merge branch 'siri/ct_netconfc/edit-config-list/OTP-15298' into maint
* siri/ct_netconfc/edit-config-list/OTP-15298: [ct] Allow ct_netconfc:edit_config/3,4,5 to take a list of XML elements
Diffstat (limited to 'lib/common_test/test')
-rw-r--r--lib/common_test/test/ct_netconfc_SUITE_data/netconfc1_SUITE.erl6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/common_test/test/ct_netconfc_SUITE_data/netconfc1_SUITE.erl b/lib/common_test/test/ct_netconfc_SUITE_data/netconfc1_SUITE.erl
index a2fa099a8c..0d17481e95 100644
--- a/lib/common_test/test/ct_netconfc_SUITE_data/netconfc1_SUITE.erl
+++ b/lib/common_test/test/ct_netconfc_SUITE_data/netconfc1_SUITE.erl
@@ -440,6 +440,12 @@ edit_config(Config) ->
?ok = ct_netconfc:edit_config(Client,running,
{server,[{xmlns,"myns"}],
[{name,["myserver"]}]}),
+ ?NS:expect_reply('edit-config',ok),
+ ?ok = ct_netconfc:edit_config(Client,running,
+ [{server,[{xmlns,"myns"}],
+ [{name,["server1"]}]},
+ {server,[{xmlns,"myns"}],
+ [{name,["server2"]}]}]),
?NS:expect_do_reply('close-session',close,ok),
?ok = ct_netconfc:close_session(Client),
ok.