From 2f60fc512ad003f7aebbc89cc0ce3bb2dfd2fe6f Mon Sep 17 00:00:00 2001 From: gsn9 <78241862+gsn9@users.noreply.github.com> Date: Tue, 7 Dec 2021 10:59:26 -0700 Subject: [PATCH] Update test_edge.py --- autocnet/graph/tests/test_edge.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autocnet/graph/tests/test_edge.py b/autocnet/graph/tests/test_edge.py index dd05711e..c9dc8a74 100644 --- a/autocnet/graph/tests/test_edge.py +++ b/autocnet/graph/tests/test_edge.py @@ -330,7 +330,7 @@ class TestEdge(unittest.TestCase): # populated with self.assertLogs() as captured: e.overlap_check() - self.assertTrue("Overlap between" not in captured.records[0].getMessage()) # and it is the proper one + self.assertTrue("Overlap between" not in captured.records[0].getMessage()) # Should work after MBRs are set e["source_mbr"] = (1, 1, 1, 1) @@ -346,4 +346,4 @@ class TestEdge(unittest.TestCase): d = node.Node(node_id=1) e = edge.Edge(s, d) - e.matches = ['a', 'b', 'c'] \ No newline at end of file + e.matches = ['a', 'b', 'c'] -- GitLab