aboutsummaryrefslogtreecommitdiff
path: root/mobly/base_test.py
diff options
context:
space:
mode:
authorAng Li <angli@google.com>2017-10-05 14:25:46 -0700
committerGitHub <noreply@github.com>2017-10-05 14:25:46 -0700
commit496a12198e4fee956e096f00c068b193aa1224bc (patch)
tree331f517445e1806be552fc9cc7f61a9fbb7870f9 /mobly/base_test.py
parentb6ab47685d1edd2c6d2124470edd0f0e1f6276fc (diff)
downloadmobly-496a12198e4fee956e096f00c068b193aa1224bc.tar.gz
Minor fixes in base_test. (#331)
Diffstat (limited to 'mobly/base_test.py')
-rw-r--r--mobly/base_test.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/mobly/base_test.py b/mobly/base_test.py
index 1b90675..8cebd27 100644
--- a/mobly/base_test.py
+++ b/mobly/base_test.py
@@ -19,10 +19,8 @@ import inspect
import logging
import sys
-from mobly import logger
from mobly import records
from mobly import signals
-from mobly import utils
# Macro strings for test result reporting
TEST_CASE_TOKEN = '[Test]'
@@ -429,8 +427,7 @@ class BaseTestClass(object):
tests.
name_func: function, generate a test name according to a set of
test arguments. This function should take the same arguments as
- the test logic function. The test name should be shorter than
- utils.MAX_FILENAME_LEN. Names over the limit will be truncated.
+ the test logic function.
arg_sets: a list of tuples, each tuple is a set of arguments to be
passed to the test logic function and name function.
"""