| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 | 5 |
| 6 # Represents triage result of a suspected cl. | 6 # Represents triage result of a suspected cl. |
| 7 CORRECT = 0 | 7 CORRECT = 0 |
| 8 INCORRECT = 1 | 8 INCORRECT = 1 |
| 9 PARTIALLY_CORRECT = 2 | 9 PARTIALLY_CORRECT = 2 |
| 10 PARTIALLY_TRIAGED = 3 | 10 PARTIALLY_TRIAGED = 3 |
| 11 | 11 |
| 12 | 12 |
| 13 RESULT_STATUS_TO_DESCRIPTION = { | 13 CL_STATUS_TO_DESCRIPTION = { |
| 14 CORRECT: 'Correct', | 14 CORRECT: 'Correct', |
| 15 INCORRECT: 'Incorrect', | 15 INCORRECT: 'Incorrect', |
| 16 PARTIALLY_CORRECT: 'Partially Correct', | 16 PARTIALLY_CORRECT: 'Partially Correct', |
| 17 PARTIALLY_TRIAGED: 'Partially triaged' | 17 PARTIALLY_TRIAGED: 'Partially Triaged' |
| 18 } | 18 } |
| OLD | NEW |