diff options
author | jahoti <jahoti@tilde.team> | 2021-12-03 00:00:00 +0000 |
---|---|---|
committer | jahoti <jahoti@tilde.team> | 2021-12-03 00:00:00 +0000 |
commit | 7d1f777a52a43f3b9479f4ebc6d177fc6efe5b70 (patch) | |
tree | 2430239ed67004ff2b4469aeb51a2fd0a224b4e4 | |
parent | 215ca7201e71f019fb19781c96f1686e146fb7d8 (diff) | |
download | browser-extension-7d1f777a52a43f3b9479f4ebc6d177fc6efe5b70.tar.gz browser-extension-7d1f777a52a43f3b9479f4ebc6d177fc6efe5b70.zip |
Correct types in test/misc_constants.
Load variable overrides with correct types
-rw-r--r-- | test/misc_constants.py | 4 |
1 files 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) |