aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjahoti <jahoti@tilde.team>2021-12-03 00:00:00 +0000
committerjahoti <jahoti@tilde.team>2021-12-03 00:00:00 +0000
commit7d1f777a52a43f3b9479f4ebc6d177fc6efe5b70 (patch)
tree2430239ed67004ff2b4469aeb51a2fd0a224b4e4
parent215ca7201e71f019fb19781c96f1686e146fb7d8 (diff)
downloadbrowser-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.py4
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)