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

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

Issue 1379493002: Use chromium revision instead of blink svn revision when rebaselining layout tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove multiple repo support Created 5 years, 3 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/net/layouttestresults_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults_unittest.py
index a7760d23d52b59c9602b67702dc6be0404598a51..5c94c2faf672c119ae1918b8469e4e850d792aee 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/net/layouttestresults_unittest.py
@@ -86,7 +86,7 @@ class LayoutTestResultsTest(unittest.TestCase):
"has_pretty_patch": false,
"fixable": 1220,
"num_flaky": 0,
- "blink_revision": "1234",
+ "chromium_revision": "1234",
"has_wdiff": false
});"""
@@ -98,8 +98,8 @@ class LayoutTestResultsTest(unittest.TestCase):
self.assertTrue(LayoutTestResults.results_from_string('ADD_RESULTS({"tests":{},"interrupted":true});').run_was_interrupted())
self.assertFalse(LayoutTestResults.results_from_string('ADD_RESULTS({"tests":{},"interrupted":false});').run_was_interrupted())
- def test_blink_revision(self):
- self.assertEqual(LayoutTestResults.results_from_string(self.example_full_results_json).blink_revision(), 1234)
+ def test_chromium_revision(self):
+ self.assertEqual(LayoutTestResults.results_from_string(self.example_full_results_json).chromium_revision(), 1234)
def test_actual_results(self):
results = LayoutTestResults.results_from_string(self.example_full_results_json)

Powered by Google App Engine
This is Rietveld 408576698