Remove trailing whitespace in description
Signed-off-by: Werner Lewis <werner.lewis@arm.com>
This commit is contained in:
parent
cfd4768df2
commit
d03d2a3a91
1 changed files with 3 additions and 1 deletions
|
@ -79,7 +79,9 @@ class BaseTarget(metaclass=ABCMeta):
|
|||
Returns:
|
||||
Description for the test case.
|
||||
"""
|
||||
return "{} #{} {}".format(self.test_name, self.count, self.case_description)
|
||||
return "{} #{} {}".format(
|
||||
self.test_name, self.count, self.case_description
|
||||
).strip()
|
||||
|
||||
|
||||
def create_test_case(self) -> test_case.TestCase:
|
||||
|
|
Loading…
Reference in a new issue