Bug 1326544: remove redundant kind name from log messages; r?hammad13060 draft
authorDustin J. Mitchell <dustin@mozilla.com>
Fri, 30 Dec 2016 20:41:02 -0500
changeset 455045 453ca8b97952cef39c5be8ad4e8242ee25903620
parent 454940 946b25b4fa1ce87f6401279ff538d78ddf833f6b
child 540879 ce03ba6fbdb704adcd6a74894330c8c730b385f7
push id40119
push userdmitchell@mozilla.com
push dateSat, 31 Dec 2016 14:44:12 +0000
reviewershammad13060
bugs1326544
milestone53.0a1
Bug 1326544: remove redundant kind name from log messages; r?hammad13060 MozReview-Commit-ID: DFEt4oJs3zO
taskcluster/taskgraph/task/test.py
--- a/taskcluster/taskgraph/task/test.py
+++ b/taskcluster/taskgraph/task/test.py
@@ -44,18 +44,18 @@ class TestTask(transform.TransformTask):
         for test_platform_name, test_platform in test_platforms.iteritems():
             for test_name in test_platform['test-names']:
                 test = copy.deepcopy(test_descriptions[test_name])
                 test['build-platform'] = test_platform['build-platform']
                 test['test-platform'] = test_platform_name
                 test['build-label'] = test_platform['build-label']
                 test['test-name'] = test_name
 
-                logger.debug("Generating tasks for {} test {} on platform {}".format(
-                    kind, test_name, test['test-platform']))
+                logger.debug("Generating tasks for test {} on platform {}".format(
+                    test_name, test['test-platform']))
                 yield test
 
     @classmethod
     def get_builds_by_platform(cls, dep_kind, loaded_tasks):
         """Find the build tasks on which tests will depend, keyed by
         platform/type.  Returns a dictionary mapping build platform to task
         label."""
         builds_by_platform = {}