replaceRootNote should be replaceRootNode

This commit is contained in:
Matthew McTague 2023-03-31 13:07:15 +13:00 committed by Herbert Wolverson
parent f38553c72b
commit 5d36828b35
6 changed files with 6 additions and 6 deletions

View File

@ -134,7 +134,7 @@ class NetworkGraph:
node.parentId = self.exceptionCPEs[node.displayName]
self.nodes.append(node)
def replaceRootNote(self, node: NetworkNode) -> None:
def replaceRootNode(self, node: NetworkNode) -> None:
# Replaces the automatically generated root node
# with a new node. Useful when you have a top-level
# node specified (e.g. "uispSite" in the UISP

View File

@ -145,7 +145,7 @@ def buildFullGraph():
# If this is the uispSite node, it becomes the root. Otherwise, add it to the
# node soup.
if name == uispSite:
net.replaceRootNote(node)
net.replaceRootNode(node)
else:
net.addRawNode(node)

View File

@ -53,7 +53,7 @@ class TestGraph(unittest.TestCase):
from integrationCommon import NetworkGraph, NetworkNode, NodeType
graph = NetworkGraph()
node = NetworkNode("Test", type = NodeType.site)
graph.replaceRootNote(node)
graph.replaceRootNode(node)
self.assertEqual(graph.nodes[0].id, "Test")
def add_child_by_named_parent(self):

View File

@ -135,7 +135,7 @@ class NetworkGraph:
node.parentId = self.exceptionCPEs[node.displayName]
self.nodes.append(node)
def replaceRootNote(self, node: NetworkNode) -> None:
def replaceRootNode(self, node: NetworkNode) -> None:
# Replaces the automatically generated root node
# with a new node. Useful when you have a top-level
# node specified (e.g. "uispSite" in the UISP

View File

@ -176,7 +176,7 @@ def buildFullGraph():
# If this is the uispSite node, it becomes the root. Otherwise, add it to the
# node soup.
if name == uispSite:
net.replaceRootNote(node)
net.replaceRootNode(node)
else:
net.addRawNode(node)

View File

@ -53,7 +53,7 @@ class TestGraph(unittest.TestCase):
from integrationCommon import NetworkGraph, NetworkNode, NodeType
graph = NetworkGraph()
node = NetworkNode("Test", type = NodeType.site)
graph.replaceRootNote(node)
graph.replaceRootNode(node)
self.assertEqual(graph.nodes[0].id, "Test")
def add_child_by_named_parent(self):