report-xfstests.py: Do a case-insensitive sort on not-run reasons

Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
This commit is contained in:
Anna Schumaker 2022-02-16 13:58:40 -05:00
parent f61184fccb
commit 39f8c14668
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ class NotRun(GObject.GObject):
self.message = message
def __lt__(self, rhs):
return self.message < rhs.message
return self.message.upper() < rhs.message.upper()
class Results(Property):