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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_exporter_unittest.py

Issue 2608923002: [WPT Export] Delete remote branch, add label, additional refactoring (Closed)
Patch Set: Address CL feedback Created 3 years, 11 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/w3c/test_exporter_unittest.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_exporter_unittest.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_exporter_unittest.py
index 33c85ab49eed22258e9ca2321682409c5dc75fe6..9dd97b2654b29cb10a86cea8143daafcb6dcf00b 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_exporter_unittest.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_exporter_unittest.py
@@ -99,20 +99,21 @@ class TestExporterTest(unittest.TestCase):
self.assertEqual(self.host.executive.calls, [
['git', 'clone', 'https://chromium.googlesource.com/external/w3c/web-platform-tests.git', '/tmp/wpt'],
['git', 'rev-parse', '--show-toplevel'],
- ['git', 'rev-list', 'beefcafe..HEAD', '--reverse', '--',
- 'badbeef8/third_party/WebKit/LayoutTests/imported/wpt/'],
- ['git', 'diff-tree', '--name-only', '--no-commit-id', '-r',
- 'badbeef8', '--', '/mock-checkout/third_party/WebKit/LayoutTests/imported/wpt'],
+ ['git', 'rev-list', 'beefcafe..HEAD', '--reverse', '--', 'badbeef8/third_party/WebKit/LayoutTests/imported/wpt/'],
+ ['git', 'diff-tree', '--name-only', '--no-commit-id', '-r', 'badbeef8', '--',
+ '/mock-checkout/third_party/WebKit/LayoutTests/imported/wpt'],
['git', 'format-patch', '-1', '--stdout', 'badbeef8', '--', 'some', 'files'],
['git', 'reset', '--hard', 'HEAD'],
['git', 'clean', '-fdx'],
['git', 'checkout', 'origin/master'],
+ ['git', 'branch', '-a'],
['git', 'apply', '-'],
['git', 'add', '.'],
['git', 'diff', 'origin/master'],
['git', 'reset', '--hard', 'HEAD'],
['git', 'clean', '-fdx'],
['git', 'checkout', 'origin/master'],
+ ['git', 'branch', '-a'],
['git', 'show', '--format=%B', '--no-patch', 'badbeef8'],
['git', 'show', '--format=%B', '--no-patch', 'badbeef8']])

Powered by Google App Engine
This is Rietveld 408576698