Merge pull request #998 from SchrodingersGat/test-report-ordering
Bugfix: Test result ordering was reversed!
This commit is contained in:
commit
a3f59d8115
|
|
@ -1042,7 +1042,9 @@ class StockItem(MPTTModel):
|
|||
as all named tests are accessible.
|
||||
"""
|
||||
|
||||
results = self.getTestResults(**kwargs).order_by('-date')
|
||||
# Filter results by "date", so that newer results
|
||||
# will override older ones.
|
||||
results = self.getTestResults(**kwargs).order_by('date')
|
||||
|
||||
result_map = {}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue