From e9dafa44e9d1665968fa316555537515f91e0ec3 Mon Sep 17 00:00:00 2001 From: Sean-Morrison Date: Wed, 6 Nov 2024 10:33:47 -0600 Subject: [PATCH] Update conftest.py --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,