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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/webkit_finder_unittest.py

Issue 2867713007: webkitpy: Make webkit_base() protected. (Closed)
Patch Set: Removed a code comment, avoid a pylint warning Created 3 years, 7 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
Index: third_party/WebKit/Tools/Scripts/webkitpy/common/webkit_finder_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/webkit_finder_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/webkit_finder_unittest.py
index 278b7ce82203b700cacfdb22fa2079d9c9072b35..8ccc92433af427e36bd4272049ca04ab05e5cd99 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/webkit_finder_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/webkit_finder_unittest.py
@@ -23,9 +23,10 @@ class TestWebKitFinder(unittest.TestCase):
finder = WebKitFinder(MockFileSystem())
self.assertIsNone(finder.layout_test_name('some/other/path/file.html'))
+ # pylint: disable=protected-access
def test_webkit_base(self):
finder = WebKitFinder(MockFileSystem())
- self.assertEqual(finder.webkit_base(), '/mock-checkout/third_party/WebKit')
+ self.assertEqual(finder._webkit_base(), '/mock-checkout/third_party/WebKit')
def test_chromium_base(self):
finder = WebKitFinder(MockFileSystem())

Powered by Google App Engine
This is Rietveld 408576698