From 31c1bdd6a84283f407d01b4162e77b9f7e934abc Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Mon, 7 Jan 2019 13:27:09 -0800 Subject: [PATCH] Fix run.py --branch argument. The API docs state that both `branch` and `branchName` are valid, but only `branchName` appears to work. --- test/utils/shippable/tools/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/utils/shippable/tools/run.py b/test/utils/shippable/tools/run.py index 4a74076d535..1986b9820ed 100755 --- a/test/utils/shippable/tools/run.py +++ b/test/utils/shippable/tools/run.py @@ -103,7 +103,7 @@ def main(): ) if args.branch: - data['branch'] = args.branch + data['branchName'] = args.branch elif args.run: data['runId'] = args.run