[201911] Fix a typo (#14050)

*Fix a typo introduced as part of #13403
This commit is contained in:
Prince Sunny 2023-03-03 10:23:08 -08:00 committed by GitHub
parent 56e00d666f
commit fb0751bc84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -403,7 +403,7 @@ class TestCfgGen(TestCase):
)
def test_minigraph_default_vxlan(self):
argument = '-m "' + self.sample_graph_t0 + '" -p "' + self.port_config + '" -v "VXLAN_TUNNEL"'
argument = '-m "' + self.sample_graph_deployment_id + '" -p "' + self.port_config + '" -v "VXLAN_TUNNEL"'
output = self.run_script(argument)
self.assertEqual(
utils.to_dict(output.strip()),
@ -411,7 +411,7 @@ class TestCfgGen(TestCase):
)
def test_minigraph_default_vnet(self):
argument = '-m "' + self.sample_graph_t0 + '" -p "' + self.port_config + '" -v "VNET"'
argument = '-m "' + self.sample_graph_deployment_id + '" -p "' + self.port_config + '" -v "VNET"'
output = self.run_script(argument)
self.assertEqual(
utils.to_dict(output.strip()),