| Index: PRESUBMIT_test.py
|
| diff --git a/PRESUBMIT_test.py b/PRESUBMIT_test.py
|
| index dd501604d402ae0efae9496e8492488f8608f51a..3fff4a2f2525b338a7e03926f78b7219401dc452 100755
|
| --- a/PRESUBMIT_test.py
|
| +++ b/PRESUBMIT_test.py
|
| @@ -413,20 +413,6 @@ class CheckSingletonInHeadersTest(unittest.TestCase):
|
| self.assertEqual(0, len(warnings))
|
|
|
|
|
| -class CheckNoDeprecatedCompiledResourcesGypTest(unittest.TestCase):
|
| - def testNoDeprecatedCompiledResourcsGyp(self):
|
| - mock_input_api = MockInputApi()
|
| - mock_input_api.files = [MockFile('some/js/compiled_resources.gyp', [])]
|
| - errors = PRESUBMIT._CheckNoDeprecatedCompiledResourcesGyp(mock_input_api,
|
| - MockOutputApi())
|
| - self.assertEquals(1, len(errors))
|
| -
|
| - mock_input_api.files = [MockFile('some/js/compiled_resources2.gyp', [])]
|
| - errors = PRESUBMIT._CheckNoDeprecatedCompiledResourcesGyp(mock_input_api,
|
| - MockOutputApi())
|
| - self.assertEquals(0, len(errors))
|
| -
|
| -
|
| class InvalidOSMacroNamesTest(unittest.TestCase):
|
| def testInvalidOSMacroNames(self):
|
| lines = ['#if defined(OS_WINDOWS)',
|
|
|