Index: third_party/WebKit/Tools/Scripts/webkitpy/w3c/wpt_github_mock.py |
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/wpt_github_mock.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/wpt_github_mock.py |
index 3f78dc7a89a4c80dada297626a1290c38429c6e4..4ecdca00cf5ee2dca4481d900671682f0a69f251 100644 |
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/wpt_github_mock.py |
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/wpt_github_mock.py |
@@ -15,13 +15,13 @@ class MockWPTGitHub(object): |
if self.unsuccessful_merge: |
raise Exception('PR could not be merged: %d' % number) |
- def create_pr(self, local_branch_name, desc_title, body): |
+ def create_pr(self, remote_branch_name, desc_title, body): |
self.calls.append('create_pr') |
- assert local_branch_name |
+ assert remote_branch_name |
assert desc_title |
assert body |
- self.pull_requests_created.append((local_branch_name, desc_title, body)) |
+ self.pull_requests_created.append((remote_branch_name, desc_title, body)) |
return {} |