Bug 1480454 - Part c: Give RefTestCase a useful __repr__ implementation; r=bbouvier

This commit is contained in:
Ms2ger 2018-08-07 10:18:31 +02:00
Родитель 6cd332bb7f
Коммит c73ddf8544
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -249,3 +249,6 @@ class RefTestCase(object):
def __hash__(self):
return self.path.__hash__()
def __repr__(self):
return "<lib.tests.RefTestCase %s>" % (self.path,)