X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=src%2Femuvim%2Ftest%2Funittests%2Ftest_sonata_dummy_gatekeeper.py;h=cc7eddd85b684e667ef286de793be9ca4d3bcab2;hb=3378093aff555df14c7b8e7febde039d2f4fbe5e;hp=277e75c07a42bf6ab3b4e07b0dd3f790b8d3847d;hpb=791525c7ae32ccf243f07680fb5db6ba9a194785;p=osm%2Fvim-emu.git diff --git a/src/emuvim/test/unittests/test_sonata_dummy_gatekeeper.py b/src/emuvim/test/unittests/test_sonata_dummy_gatekeeper.py index 277e75c..cc7eddd 100755 --- a/src/emuvim/test/unittests/test_sonata_dummy_gatekeeper.py +++ b/src/emuvim/test/unittests/test_sonata_dummy_gatekeeper.py @@ -109,12 +109,12 @@ class testSonataDummyGatekeeper(SimpleTestTopology): dst_ip = [intf['ip'] for intf in network_list if intf['intf_name'] == intf_dst][0] dst_mask = [intf['netmask'] for intf in network_list if intf['intf_name'] == intf_dst][0] - print "src = {0}:{1} ip={2}/{3} ".format(vnf_src, intf_src, src_ip, src_mask) - print "dst = {0}:{1} ip={2}/{3} ".format(vnf_dst, intf_dst, dst_ip, dst_mask) + print "src = {0}:{1} ip={2} ".format(vnf_src, intf_src, src_ip, src_mask) + print "dst = {0}:{1} ip={2} ".format(vnf_dst, intf_dst, dst_ip, dst_mask) # check if the E-Line IP's are in the same subnet - ret = ip_network(u'{0}/{1}'.format(src_ip, src_mask), strict=False)\ - .compare_networks(ip_network(u'{0}/{1}'.format(dst_ip, dst_mask),strict=False)) + ret = ip_network(u'{0}'.format(src_ip, src_mask), strict=False)\ + .compare_networks(ip_network(u'{0}'.format(dst_ip, dst_mask),strict=False)) self.assertTrue(ret == 0)