Minor comment clarification

Use quote marks to indicate literal string.
This commit is contained in:
Chris Dent 2017-02-06 12:52:16 +00:00
parent f0bacce539
commit cade01d299
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ class ConciseTestResult(TextTestResult):
self.stream.writeln('\t[unexpected success]')
def getDescription(self, test):
# Chop the test method (test_request) off the test.id().
# Chop the test method ('test_request') off the test.id().
name = test.id().rsplit('.', 1)[0]
desc = test.test_data.get('desc', None)
return ': '.join((name, desc)) if desc else name