diff --git a/tests/conftest.py b/tests/conftest.py index 9eb1585..442df87 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -80,7 +80,7 @@ def expdata(datapath): # full source file location source = os.path.join(base, sas_module, location) # full final file location - destination = os.path.join(os.getenv('SAS_BASE_DIR'), sas_module, location) + destination = os.path.normpath(os.path.join(os.getenv('SAS_BASE_DIR'), sas_module, location)) # combined dict result = {'name': datapath['name'], 'params': datapath['params'], 'base': base, 'sas_module': sas_module, 'location': location, 'source': source,