| Index: appengine/findit/model/triage_status.py
|
| diff --git a/appengine/findit/waterfall/try_job_type.py b/appengine/findit/model/triage_status.py
|
| similarity index 68%
|
| copy from appengine/findit/waterfall/try_job_type.py
|
| copy to appengine/findit/model/triage_status.py
|
| index 6da35e2f2fe910e29e4e96adb766ec56787df0db..323a52a91d1b686a8d4b3b73e920ff794f763654 100644
|
| --- a/appengine/findit/waterfall/try_job_type.py
|
| +++ b/appengine/findit/model/triage_status.py
|
| @@ -2,7 +2,7 @@
|
| # Use of this source code is governed by a BSD-style license that can be
|
| # found in the LICENSE file.
|
|
|
| -
|
| -class TryJobType(object):
|
| - COMPILE = 'compile'
|
| - TEST = 'test'
|
| +UNTRIAGED = 0
|
| +TRIAGED_INCORRECT = 1
|
| +TRIAGED_CORRECT = 2
|
| +TRIAGED_UNSURE = 3
|
|
|