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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/auto_rebaseline_unittest.py

Issue 2588863002: Make MockExecutive behave more like MockExecutive2. (Closed)
Patch Set: Remove extra changes in android_unittest.py. Created 4 years 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/tool/commands/auto_rebaseline_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/auto_rebaseline_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/auto_rebaseline_unittest.py
index ebcb694609aa5998c7d1f0e2d02dde4aa2e405bb..443fd8e539aa385850c28aa0470593197e2973b7 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/auto_rebaseline_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/auto_rebaseline_unittest.py
@@ -245,6 +245,7 @@ crbug.com/24182 path/to/locally-changed-lined.html [ NeedsRebaseline ]
['git', 'pull'],
['git', 'cl', 'land', '-f', '-v'],
['git', 'config', 'branch.auto-rebaseline-temporary-branch.rietveldissue'],
+ ['git', 'cl', 'set_close'],
qyearsley 2016/12/19 22:49:29 The reason why this extra command is run is: Prev
])
# The mac ports should both be removed since they're the only ones in builders._exact_matches.
@@ -349,6 +350,7 @@ Bug(foo) fast/dom/prototype-taco.html [ NeedsRebaseline ]
['git', 'pull'],
['git', 'cl', 'land', '-f', '-v'],
['git', 'config', 'branch.auto-rebaseline-temporary-branch.rietveldissue'],
+ ['git', 'cl', 'set_close'],
])
# The mac ports should both be removed since they're the only ones in builders._exact_matches.
@@ -400,6 +402,7 @@ Bug(foo) fast/dom/prototype-taco.html [ NeedsRebaseline ]
['git', 'pull'],
['git', 'cl', 'land', '-f', '-v'],
['git', 'config', 'branch.auto-rebaseline-alt-temporary-branch.rietveldissue'],
+ ['git', 'cl', 'set_close'],
])
self.assertEqual(self.tool.filesystem.read_text_file(test_port.path_to_generic_test_expectations_file()), """
@@ -452,6 +455,7 @@ Bug(foo) fast/dom/prototype-taco.html [ NeedsRebaseline ]
['git', 'pull'],
['git', 'cl', 'land', '-f', '-v'],
['git', 'config', 'branch.auto-rebaseline-temporary-branch.rietveldissue'],
+ ['git', 'cl', 'set_close'],
])
self.assertEqual(self.tool.filesystem.read_text_file(test_port.path_to_generic_test_expectations_file()), """
@@ -515,6 +519,7 @@ Bug(foo) [ Linux Win ] fast/dom/prototype-taco.html [ NeedsRebaseline ]
['git', 'pull'],
['git', 'cl', 'land', '-f', '-v', '--auth-refresh-token-json', rietveld_refresh_token],
['git', 'config', 'branch.auto-rebaseline-temporary-branch.rietveldissue'],
+ ['git', 'cl', 'set_close', '--auth-refresh-token-json', rietveld_refresh_token],
],
auth_refresh_token_json=rietveld_refresh_token)

Powered by Google App Engine
This is Rietveld 408576698