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

Unified Diff: appengine/findit/model/wf_analysis_result_status.py

Issue 1866883002: [Findit] A huge refactoring and some bug fixing. (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Fix nit. Created 4 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/findit/model/wf_analysis.py ('k') | appengine/findit/model/wf_analysis_status.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/findit/model/wf_analysis_result_status.py
diff --git a/appengine/findit/model/wf_analysis_result_status.py b/appengine/findit/model/wf_analysis_result_status.py
deleted file mode 100644
index e01c50f2347fc571bf9e3e1f46b5273dc0c9e27b..0000000000000000000000000000000000000000
--- a/appengine/findit/model/wf_analysis_result_status.py
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 2015 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-
-# Represents status of the analysis result of a waterfall build failure.
-FOUND_CORRECT = 0
-FOUND_INCORRECT = 10
-NOT_FOUND_INCORRECT = 20
-FOUND_UNTRIAGED = 30
-NOT_FOUND_UNTRIAGED = 40
-NOT_FOUND_CORRECT = 50
-FOUND_CORRECT_DUPLICATE = 1000
-FOUND_INCORRECT_DUPLICATE = 1010
-
-RESULT_STATUS_TO_DESCRIPTION = {
- FOUND_CORRECT: 'Correct - Found',
- FOUND_INCORRECT: 'Incorrect - Found',
- NOT_FOUND_INCORRECT: 'Incorrect - Not Found',
- FOUND_UNTRIAGED: 'Untriaged - Found',
- NOT_FOUND_UNTRIAGED: 'Untriaged - Not Found',
- NOT_FOUND_CORRECT: 'Correct - Not Found',
- FOUND_CORRECT_DUPLICATE: 'Correct(duplicate) - Found',
- FOUND_INCORRECT_DUPLICATE: 'Incorrect(duplicate) - Found'
-}
« no previous file with comments | « appengine/findit/model/wf_analysis.py ('k') | appengine/findit/model/wf_analysis_status.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698