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

Unified Diff: Tools/Scripts/webkitpy/common/checkout/diff_parser_unittest.py

Issue 1045723009: Move core/layout/style to core/style (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase. Created 5 years, 9 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 | « Source/web/tests/WebDocumentTest.cpp ('k') | Tools/Scripts/webkitpy/common/checkout/diff_test_data.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/Scripts/webkitpy/common/checkout/diff_parser_unittest.py
diff --git a/Tools/Scripts/webkitpy/common/checkout/diff_parser_unittest.py b/Tools/Scripts/webkitpy/common/checkout/diff_parser_unittest.py
index 2b3fe9647de781586b2b3de7d5b52e47b5111be2..0d98c8a72044d96876d0f30a9e9df0b1a4e227b4 100644
--- a/Tools/Scripts/webkitpy/common/checkout/diff_parser_unittest.py
+++ b/Tools/Scripts/webkitpy/common/checkout/diff_parser_unittest.py
@@ -41,8 +41,8 @@ class DiffParserTest(unittest.TestCase):
parser = diff_parser.DiffParser(DIFF_TEST_DATA.splitlines())
self.assertEqual(3, len(parser.files))
- self.assertTrue('WebCore/layout/style/StyleFlexibleBoxData.h' in parser.files)
- diff = parser.files['WebCore/layout/style/StyleFlexibleBoxData.h']
+ self.assertTrue('WebCore/style/StyleFlexibleBoxData.h' in parser.files)
+ diff = parser.files['WebCore/style/StyleFlexibleBoxData.h']
self.assertEqual(7, len(diff.lines))
# The first two unchaged lines.
self.assertEqual((47, 47), diff.lines[0][0:2])
@@ -54,8 +54,8 @@ class DiffParserTest(unittest.TestCase):
self.assertEqual(' unsigned orient: 1; // EBoxOrient', diff.lines[3][2])
# The first file looks OK. Let's check the next, more complicated file.
- self.assertTrue('WebCore/layout/style/StyleRareInheritedData.cpp' in parser.files)
- diff = parser.files['WebCore/layout/style/StyleRareInheritedData.cpp']
+ self.assertTrue('WebCore/style/StyleRareInheritedData.cpp' in parser.files)
+ diff = parser.files['WebCore/style/StyleRareInheritedData.cpp']
# There are 3 chunks.
self.assertEqual(7 + 7 + 9, len(diff.lines))
# Around an added line.
« no previous file with comments | « Source/web/tests/WebDocumentTest.cpp ('k') | Tools/Scripts/webkitpy/common/checkout/diff_test_data.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698