| 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)
|
|
|