From 2f4a13787a1df1e5b2350188b8708fa858e460a7 Mon Sep 17 00:00:00 2001 From: Peter LaFosse Date: Fri, 19 Jun 2020 09:07:12 -0400 Subject: Sort the types list in unit test --- suite/testcommon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suite/testcommon.py b/suite/testcommon.py index 0499d294..6bb841fa 100644 --- a/suite/testcommon.py +++ b/suite/testcommon.py @@ -405,7 +405,7 @@ class BinaryViewTestBuilder(Builder): """BinaryView produced different results""" retinfo = [] - for type in self.bv.types.items(): + for type in sorted([str(i) for i in self.bv.types.items()]): retinfo.append("BV Type: " + str(type)) for segment in sorted([str(i) for i in self.bv.segments]): retinfo.append("BV segment: " + str(segment)) -- cgit v1.3.1