X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=tests%2Ftransportpce_tests%2Ftest_portmapping.py;h=c51744b14a3c545fb6c02e47fa0931dc9cf57011;hb=217f3afb6b4a51a5dd5124ae057dd3d37a6d7fb2;hp=b2df50ac552a5863e1e156a36b76983f924da1a9;hpb=88917566b1524d5ec89ede47e5169f091a2e5652;p=transportpce.git diff --git a/tests/transportpce_tests/test_portmapping.py b/tests/transportpce_tests/test_portmapping.py index b2df50ac5..c51744b14 100644 --- a/tests/transportpce_tests/test_portmapping.py +++ b/tests/transportpce_tests/test_portmapping.py @@ -208,7 +208,7 @@ class TransportPCEPortMappingTesting(unittest.TestCase): def test_10_xpdr_portmapping_NETWORK1(self): url = ("{}/config/portmapping:network/" - "nodes/XPDRA/mapping/XPDR-LINE1" + "nodes/XPDRA/mapping/NETWORK1" .format(self.restconf_baseurl)) headers = {'content-type': 'application/json'} response = requests.request( @@ -217,12 +217,12 @@ class TransportPCEPortMappingTesting(unittest.TestCase): res = response.json() self.assertIn( {'supporting-port': '1', 'supporting-circuit-pack-name': '1/0/1-PLUG-NET', - 'logical-connection-point': 'XPDR-LINE1'}, + 'logical-connection-point': 'NETWORK1'}, res['mapping']) def test_11_xpdr_portmapping_CLIENT1(self): url = ("{}/config/portmapping:network/" - "nodes/XPDRA/mapping/XPDR-CLNT1" + "nodes/XPDRA/mapping/CLIENT1" .format(self.restconf_baseurl)) headers = {'content-type': 'application/json'} response = requests.request( @@ -232,7 +232,7 @@ class TransportPCEPortMappingTesting(unittest.TestCase): self.assertIn( {'supporting-port': '1', 'supporting-circuit-pack-name': '1/0/2-PLUG-CLIENT', - 'logical-connection-point': 'XPDR-CLNT1'}, + 'logical-connection-point': 'CLIENT1'}, res['mapping']) def test_12_xpdr_device_disconnected(self):