Fixed typo in subunit-trace.py

Change-Id: Iab613cc14074c9d2b3a17b9b2efe248160300b4a
This commit is contained in:
Yi Zhao 2016-02-29 15:22:43 +08:00
parent 8dc85b401e
commit a9c97eac89
1 changed files with 2 additions and 2 deletions

View File

@ -88,9 +88,9 @@ def cleanup_test_name(name, strip_tags=True, strip_scenarios=False):
By default we strip out the tags in the test because they don't help us
in identifying the test that is run to it's result.
Make it possible to strip out the testscenarios information (not to
Make it possible to strip out the test scenarios information (not to
be confused with tempest scenarios) however that's often needed to
indentify generated negative tests.
identify generated negative tests.
"""
if strip_tags:
tags_start = name.find('[')