diff --git a/.gitignore b/.gitignore index 509379f..e568415 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,7 @@ #may contain authentication information sources.cfg #Another of our config files -GUI/gui.cfg +GUI.cfg #THINGS WE WOULD NEVER EVER WANT! #ignore thumbnails created by windows diff --git a/GUI.cfg b/GUI.cfg.sample similarity index 100% rename from GUI.cfg rename to GUI.cfg.sample diff --git a/tests/test_gui.py b/tests/test_gui.py index e5e174c..970f288 100644 --- a/tests/test_gui.py +++ b/tests/test_gui.py @@ -7,7 +7,7 @@ class TestGUI(unittest.TestCase): pass def test_empty_attributes(self): - self.test_gui = gui.GUI(None, '../GUI/GUI.cfg', in_source=False) + self.test_gui = gui.GUI(None, '../GUI.cfg.sample', in_source=False) self.test_gui.window.after(9, self.test_gui.prepare_search) self.test_gui.window.after(11, self.test_gui.window.destroy) self.test_gui.run()