Skip to content

Commit

Permalink
material_budget_comparison logic fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gudrutis committed Feb 22, 2018
1 parent 81d47fe commit 494b1e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions report-summary-merged-prs
Original file line number Diff line number Diff line change
Expand Up @@ -759,9 +759,9 @@ def find_material_budget_results( comparisons , architecture ):
if (comparison is None) or (comparison is '-1'):
pass
elif(comparison == "0"):
comp['material_budget_comparison'] = {'status': 'found', 'results': 'warning', 'arch': arch}
else:
comp['material_budget_comparison'] = {'status': 'found', 'results': 'ok', 'arch': arch}
else:
comp['material_budget_comparison'] = {'status': 'found', 'results': 'warning', 'arch': arch}

#
# Finds for an IB the results of the valgrind
Expand Down

0 comments on commit 494b1e9

Please sign in to comment.