| Index: tests/presubmit_unittest.py
|
| diff --git a/tests/presubmit_unittest.py b/tests/presubmit_unittest.py
|
| index fdeced2276240cb0e0386b9bb81e270a40541c0d..314901012bf3744e983ca86b29600377dd85aa28 100755
|
| --- a/tests/presubmit_unittest.py
|
| +++ b/tests/presubmit_unittest.py
|
| @@ -952,9 +952,9 @@ class InputApiUnittest(PresubmitTestsBase):
|
| ['M', join('foo', 'blat', 'weird.xyz')],
|
| ['M', join('foo', 'blat', 'another.h')],
|
| ['M', join('foo', 'third_party', 'third.cc')],
|
| - ['D', 'foo/mat/beingdeleted.txt'],
|
| - ['M', 'flop/notfound.txt'],
|
| - ['A', 'boo/flap.h'],
|
| + ['D', join('foo', 'mat', 'beingdeleted.txt')],
|
| + ['M', join('flop', 'notfound.txt')],
|
| + ['A', join('boo', 'flap.h')],
|
| ]
|
| blat = presubmit.normpath(join(self.fake_root_dir, files[0][1]))
|
| readme = presubmit.normpath(join(self.fake_root_dir, files[1][1]))
|
|
|