Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Unified Diff: tests/presubmit_unittest.py

Issue 125252: Fix a failure in testDirectoryHandling on posix. (Closed) Base URL: svn://chrome-svn/chrome/trunk/tools/depot_tools/
Patch Set: Created 11 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/presubmit_unittest.py
===================================================================
--- tests/presubmit_unittest.py (revision 18614)
+++ tests/presubmit_unittest.py (working copy)
@@ -6,6 +6,7 @@
"""Unit tests for presubmit_support.py and presubmit_canned_checks.py."""
import exceptions
+import os
import StringIO
import unittest
@@ -399,7 +400,7 @@
def testDirectoryHandling(self):
files = [
['A', 'isdir'],
- ['A', 'isdir\\blat.cc'],
+ ['A', os.path.join('isdir', 'blat.cc')],
]
isdir = presubmit.os.path.join(self.fake_root_dir, 'isdir')
blat = presubmit.os.path.join(isdir, 'blat.cc')
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698