We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a58ce1 commit cd5084aCopy full SHA for cd5084a
test/test_fileio.py
@@ -13,7 +13,8 @@ class TestTypes(unittest.TestCase):
13
# TODO :- Write tests for JSONParser once it's completed.
14
15
def setUp(self):
16
- self.file = 'doc/example_odMLs/THGTTG.odml'
+ self.dir_path = os.path.dirname(os.path.realpath(__file__))
17
+ self.file = os.path.join(self.dir_path, 'resources', 'example.odml')
18
# Do not allow anything to be printed on STDOUT
19
self.captured_stdout = StringIO()
20
sys.stdout = self.captured_stdout
0 commit comments