Skip to content

Commit

Permalink
[201911] Fix a typo (#14050)
Browse files Browse the repository at this point in the history
*Fix a typo introduced as part of #13403
  • Loading branch information
prsunny authored Mar 3, 2023
1 parent 56e00d6 commit fb0751b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sonic-config-engine/tests/test_cfggen.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,15 +403,15 @@ def test_minigraph_port_rs(self):
)

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()),
utils.to_dict("{'tunnel_v4': {'src_ip': '10.1.0.32'}}")
)

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()),
Expand Down

0 comments on commit fb0751b

Please sign in to comment.