| Index: tools/testrunner/local/testsuite.py
|
| diff --git a/tools/testrunner/local/testsuite.py b/tools/testrunner/local/testsuite.py
|
| index 55e0eb21ae02ffd3778ea674f9adfff2a355e836..fd013d75684c1e47aa95039af6a33d2a90ae0e2b 100644
|
| --- a/tools/testrunner/local/testsuite.py
|
| +++ b/tools/testrunner/local/testsuite.py
|
| @@ -328,7 +328,7 @@ class GoogleTestSuite(TestSuite):
|
| if test_desc.endswith('.'):
|
| test_case = test_desc
|
| elif test_case and test_desc:
|
| - test = testcase.TestCase(self, test_case + test_desc, dependency=None)
|
| + test = testcase.TestCase(self, test_case + test_desc)
|
| tests.append(test)
|
| tests.sort()
|
| return tests
|
|
|