Chromium Code Reviews

Unified Diff: tests/presubmit_unittest.py

Issue 14729012: Fix many (but not all[1]) depot_tools tests on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
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]))

Powered by Google App Engine