Revision 7d1f777a
Added by jahoti almost 2 years ago
test/misc_constants.py | ||
---|---|---|
51 | 51 |
default_firefox_binary = value |
52 | 52 |
|
53 | 53 |
elif key == 'TEST_PROFILE': |
54 |
default_clean_profile_dir = value
|
|
54 |
default_clean_profile_dir = Path(value)
|
|
55 | 55 |
|
56 | 56 |
elif key == 'TEST_PORT': |
57 |
default_proxy_port = value
|
|
57 |
default_proxy_port = int(value)
|
|
58 | 58 |
|
59 | 59 |
else: |
60 | 60 |
raise KeyError(key) |
Also available in: Unified diff
Correct types in test/misc_constants.
Load variable overrides with correct types