diff options
Diffstat (limited to 'build/android/pylib/host_driven/tests_annotations.py')
-rw-r--r-- | build/android/pylib/host_driven/tests_annotations.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build/android/pylib/host_driven/tests_annotations.py b/build/android/pylib/host_driven/tests_annotations.py index 8744256..2654e32 100644 --- a/build/android/pylib/host_driven/tests_annotations.py +++ b/build/android/pylib/host_driven/tests_annotations.py @@ -2,7 +2,7 @@ # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. -"""Annotations for python-driven tests.""" +"""Annotations for host-driven tests.""" import os @@ -13,7 +13,7 @@ class AnnotatedFunctions(object): @staticmethod def _AddFunction(annotation, function): - """Adds an annotated to function to our container. + """Adds an annotated function to our container. Args: annotation: the annotation string. @@ -56,7 +56,7 @@ class AnnotatedFunctions(object): if qualified_function_name in tests] -# The following functions are annotations used for the python driven tests. +# The following functions are annotations used for the host-driven tests. def Smoke(function): return AnnotatedFunctions._AddFunction('Smoke', function) |