aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)