Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(238)

Side by Side Diff: appengine/findit/model/suspected_cl_status.py

Issue 2361583002: [Findit] UI change and triage change for cl level trige. (Closed)
Patch Set: . Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 }
OLDNEW
« no previous file with comments | « appengine/findit/model/suspected_cl_confidence.py ('k') | appengine/findit/templates/build_failure.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698