Private GIT

Skip to content
Snippets Groups Projects
Commit 57120263 authored by Alison Winters's avatar Alison Winters
Browse files

fix all_tests directory separator for windows

parent 1794e2f9
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@ class AllTests(unittest.TestCase):
def _get_module_strings(self):
modules = []
for file_string in self.test_file_strings:
modules.append(file_string[len(tests_dir):len(file_string) - 3].replace('/', '.'))
modules.append(file_string[len(tests_dir):len(file_string) - 3].replace(os.sep, '.'))
return modules
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment