Index: presubmit_canned_checks.py |
=================================================================== |
--- presubmit_canned_checks.py (revision 148624) |
+++ presubmit_canned_checks.py (working copy) |
@@ -10,16 +10,6 @@ |
### Description checks |
-def CheckChangeHasTestField(input_api, output_api): |
M-A Ruel
2012/07/27 00:05:26
Do not remove it. This would break current users.
|
- """Requires that the changelist have a TEST= field.""" |
- if input_api.change.TEST: |
- return [] |
- else: |
- return [output_api.PresubmitNotifyResult( |
- 'If this change requires manual test instructions to QA team, add ' |
- 'TEST=[instructions].')] |
- |
- |
def CheckChangeHasBugField(input_api, output_api): |
"""Requires that the changelist have a BUG= field.""" |
if input_api.change.BUG: |