| Index: PRESUBMIT_test.py
|
| diff --git a/PRESUBMIT_test.py b/PRESUBMIT_test.py
|
| index fdca995486edb691cee55783fb426ecec215ba7b..dd501604d402ae0efae9496e8492488f8608f51a 100755
|
| --- a/PRESUBMIT_test.py
|
| +++ b/PRESUBMIT_test.py
|
| @@ -506,7 +506,7 @@ class CheckAddedDepsHaveTetsApprovalsTest(unittest.TestCase):
|
| '+grit/",',
|
| '+jni/fooblat.h',
|
| '+policy',
|
| - '+third_party/WebKit',
|
| + '+' + os.path.join('third_party', 'WebKit'),
|
| ]
|
| new_specific_include_rules = {
|
| 'compositor\.*': {
|
| @@ -518,11 +518,11 @@ class CheckAddedDepsHaveTetsApprovalsTest(unittest.TestCase):
|
| }
|
|
|
| expected = set([
|
| - 'chrome/DEPS',
|
| - 'gpu/DEPS',
|
| - 'components/DEPS',
|
| - 'policy/DEPS',
|
| - 'third_party/WebKit/DEPS',
|
| + os.path.join('chrome', 'DEPS'),
|
| + os.path.join('gpu', 'DEPS'),
|
| + os.path.join('components', 'DEPS'),
|
| + os.path.join('policy', 'DEPS'),
|
| + os.path.join('third_party', 'WebKit', 'DEPS'),
|
| ])
|
| self.assertEqual(
|
| expected,
|
|
|