| Index: Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py
|
| diff --git a/Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py b/Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py
|
| index 20a0b79673623c51d2d03eed239eb28b0456045b..c0f2da3b0e18366d35d6c16358f7b878c145e19d 100644
|
| --- a/Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py
|
| +++ b/Tools/Scripts/webkitpy/style/checkers/cpp_unittest.py
|
| @@ -2831,14 +2831,14 @@ class OrderOfIncludesTest(CppStyleTestBase):
|
| '#include "foo.h"\n'
|
| '\n'
|
| '#include <wtf/Assertions.h>\n',
|
| - '')
|
| + 'wtf includes should be "wtf/file.h" instead of <wtf/file.h>.'
|
| + ' [build/include] [4]')
|
| self.assert_language_rules_check('foo.cpp',
|
| '#include "config.h"\n'
|
| '#include "foo.h"\n'
|
| '\n'
|
| '#include "wtf/Assertions.h"\n',
|
| - 'wtf includes should be <wtf/file.h> instead of "wtf/file.h".'
|
| - ' [build/include] [4]')
|
| + '')
|
|
|
| def test_check_cc_includes(self):
|
| self.assert_language_rules_check('bar/chromium/foo.cpp',
|
|
|