aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLucas Abel <22837557+uael@users.noreply.github.com>2023-03-23 11:17:25 -0700
committerGitHub <noreply@github.com>2023-03-23 11:17:25 -0700
commit384ebbe47fbc48af60d73b1bede1f78976612fc4 (patch)
tree2341cedff3dd8f8e1dd6be1834f5a149c05da2bb
parent61706b7bfb759269cebcc44d4888b6016782d34b (diff)
downloadmobly-384ebbe47fbc48af60d73b1bede1f78976612fc4.tar.gz
Default `TestRunConfig.log_path` to `_DEFAULT_LOG_PATH` (#876)
-rw-r--r--mobly/config_parser.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/mobly/config_parser.py b/mobly/config_parser.py
index 0f31cdc..2f2da91 100644
--- a/mobly/config_parser.py
+++ b/mobly/config_parser.py
@@ -176,8 +176,7 @@ class TestRunConfig:
"""
def __init__(self):
- # Init value is an empty string to avoid string joining errors.
- self.log_path = ''
+ self.log_path = _DEFAULT_LOG_PATH
# Deprecated, use 'testbed_name'
self.test_bed_name = None
self.testbed_name = None