aboutsummaryrefslogtreecommitdiff
path: root/catapult/devil/devil/utils/run_tests_helper.py
diff options
context:
space:
mode:
Diffstat (limited to 'catapult/devil/devil/utils/run_tests_helper.py')
-rw-r--r--catapult/devil/devil/utils/run_tests_helper.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/catapult/devil/devil/utils/run_tests_helper.py b/catapult/devil/devil/utils/run_tests_helper.py
index 0b9dd47f..b161fd74 100644
--- a/catapult/devil/devil/utils/run_tests_helper.py
+++ b/catapult/devil/devil/utils/run_tests_helper.py
@@ -1,7 +1,6 @@
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-
"""Helper functions common to native, java and host-driven test runners."""
import collections
@@ -9,12 +8,10 @@ import logging
from devil.utils import logging_common
-
CustomFormatter = logging_common.CustomFormatter
-
-_WrappedLoggingArgs = collections.namedtuple(
- '_WrappedLoggingArgs', ['verbose', 'quiet'])
+_WrappedLoggingArgs = collections.namedtuple('_WrappedLoggingArgs',
+ ['verbose', 'quiet'])
def SetLogLevel(verbose_count, add_handler=True):