commit 7d1f777a52a43f3b9479f4ebc6d177fc6efe5b70 Author: jahoti Date: Fri Dec 3 00:00:00 2021 +0000 Correct types in test/misc_constants. Load variable overrides with correct types diff --git a/test/misc_constants.py b/test/misc_constants.py index 55ee13e..3494293 100644 --- a/test/misc_constants.py +++ b/test/misc_constants.py @@ -51,10 +51,10 @@ try: default_firefox_binary = value elif key == 'TEST_PROFILE': - default_clean_profile_dir = value + default_clean_profile_dir = Path(value) elif key == 'TEST_PORT': - default_proxy_port = value + default_proxy_port = int(value) else: raise KeyError(key)