From 7d1f777a52a43f3b9479f4ebc6d177fc6efe5b70 Mon Sep 17 00:00:00 2001 From: jahoti Date: Fri, 3 Dec 2021 00:00:00 +0000 Subject: Correct types in test/misc_constants. Load variable overrides with correct types --- test/misc_constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- cgit v1.2.3