From d504015496f4c4ae6c1b2061c1c6f92d3ac47115 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Thu, 17 Sep 2015 17:39:29 +0200 Subject: [PATCH] Update CheckoutBranch to the wptrunner changes. This is a port of . --- tests/wpt/update/upstream.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/wpt/update/upstream.py b/tests/wpt/update/upstream.py index d5f3df52ae6..61b06437138 100644 --- a/tests/wpt/update/upstream.py +++ b/tests/wpt/update/upstream.py @@ -92,11 +92,11 @@ class CheckoutBranch(Step): def create(self, state): self.logger.info("Updating sync tree from %s" % state.sync["remote_url"]) state.branch = state.sync_tree.unique_branch_name( - "outbound_update_%s" % state.test_manifest.rev) + "outbound_update_%s" % state.old_manifest.rev) state.sync_tree.update(state.sync["remote_url"], state.sync["branch"], state.branch) - state.sync_tree.checkout(state.test_manifest.rev, state.branch, force=True) + state.sync_tree.checkout(state.old_manifest.rev, state.branch, force=True) class GetLastSyncCommit(Step):