diff options
author | nsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-06 13:00:48 +0000 |
---|---|---|
committer | nsylvain@chromium.org <nsylvain@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-06 13:00:48 +0000 |
commit | b3f74e3fdf41b16e09b1066665bab7e7c5313b5f (patch) | |
tree | 73710f3102754a99600ca7e2a9eaee232cc65f90 | |
parent | 723888d38bb40cfaaf92238a8d79b5a595213500 (diff) | |
download | chromium_src-b3f74e3fdf41b16e09b1066665bab7e7c5313b5f.zip chromium_src-b3f74e3fdf41b16e09b1066665bab7e7c5313b5f.tar.gz chromium_src-b3f74e3fdf41b16e09b1066665bab7e7c5313b5f.tar.bz2 |
Change the presubmit unittest with no code change. This is to trigger a test build
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11107 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-x | PRESUBMIT_unittest.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/PRESUBMIT_unittest.py b/PRESUBMIT_unittest.py index b8183c2..141c567 100755 --- a/PRESUBMIT_unittest.py +++ b/PRESUBMIT_unittest.py @@ -55,11 +55,11 @@ class PresubmitUnittest(unittest.TestCase): def testLocalChecks(self): api = MockInputApi() api.affected_files = [ - MockAffectedFile('foo/blat/yoo.notsource'), + MockAffectedFile('bleh/blat/yoo.notsource'), MockAffectedFile('third_party/blat/source.cc'), - MockAffectedFile('foo/blat/source.h'), - MockAffectedFile('foo/blat/source.mm'), - MockAffectedFile('foo/blat/source.py'), + MockAffectedFile('bleh/blat/source.h'), + MockAffectedFile('bleh/blat/source.mm'), + MockAffectedFile('bleh/blat/source.py'), ] self.file_contents = 'file with \n\terror\nhere\r\nyes there' # 3 source files, 2 errors by file + 1 global CR error. |