From b9b344464c942f485473270571ea177d7fe54d6f Mon Sep 17 00:00:00 2001 From: Herbert Wolverson Date: Sat, 17 Dec 2022 08:09:50 -0600 Subject: [PATCH] Change path to network.example.json. When the repo was rearranged, it broke a unit test that expected to find network.json.example in the "1.3" folder. It now looks in the src/ folder, and the test passes. --- src/testGraph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/testGraph.py b/src/testGraph.py index d64ed2f3..e127ac37 100644 --- a/src/testGraph.py +++ b/src/testGraph.py @@ -252,7 +252,7 @@ class TestGraph(unittest.TestCase): net.createNetworkJson() with open('network.json') as file: newFile = json.load(file) - with open('v1.3/network.example.json') as file: + with open('src/network.example.json') as file: exampleFile = json.load(file) self.assertEqual(newFile, exampleFile)