fixed typo in test_links
This commit is contained in:
parent
b4bc9c23a3
commit
3e325fcdc7
1 changed files with 3 additions and 3 deletions
|
@ -24,14 +24,14 @@ class TestLinks:
|
||||||
node_one = session.add_node()
|
node_one = session.add_node()
|
||||||
node_two = session.add_node()
|
node_two = session.add_node()
|
||||||
interface_one = ip_prefixes.create_interface(node_one)
|
interface_one = ip_prefixes.create_interface(node_one)
|
||||||
inteface_two = ip_prefixes.create_interface(node_two)
|
interface_two = ip_prefixes.create_interface(node_two)
|
||||||
|
|
||||||
# when
|
# when
|
||||||
session.add_link(node_one.id, node_two.id, interface_one, inteface_two)
|
session.add_link(node_one.id, node_two.id, interface_one, interface_two)
|
||||||
|
|
||||||
# then
|
# then
|
||||||
assert node_one.netif(interface_one.id)
|
assert node_one.netif(interface_one.id)
|
||||||
assert node_two.netif(inteface_two.id)
|
assert node_two.netif(interface_two.id)
|
||||||
|
|
||||||
def test_node_to_net(self, session, ip_prefixes):
|
def test_node_to_net(self, session, ip_prefixes):
|
||||||
# given
|
# given
|
||||||
|
|
Loading…
Add table
Reference in a new issue