Chromium Code Reviews| Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_run_results.py |
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_run_results.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_run_results.py |
| index 7c3a438262831b162571d7994145aedbb3763ca5..d44c592dc36ceea291ce725bb8317a52ee498c73 100644 |
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_run_results.py |
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/test_run_results.py |
| @@ -341,7 +341,7 @@ def summarize_results(port_obj, expectations, initial_results, |
| results['chromium_revision'] = '' |
| if port_obj.get_option('builder_name'): |
| path = port_obj.repository_path() |
| - scm = port_obj.host.scm_for_path(path) |
| + scm = port_obj.host.scm(path=path) |
|
jeffcarp
2017/01/31 22:24:56
Some invocations use path= and some don't, would b
qyearsley
2017/02/01 00:58:47
Done
|
| if scm: |
| results['chromium_revision'] = str(scm.commit_position(path)) |
| else: |