summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke "Jared" Bennett <lbennett@gitlab.com>2017-08-25 22:16:02 +0100
committerLuke "Jared" Bennett <lbennett@gitlab.com>2017-08-25 22:16:02 +0100
commite898c00a4963ff7f1336c088dca4027f3a5d4db0 (patch)
treeaca52c3f5cb89c398cf6687c89ae818466c2fefd
parent313dcaf851000c7bccbe59a9d914f8ed634e128e (diff)
downloadgitlab-ce-ide-fix.tar.gz
Fix start_branch assignide-fix
-rw-r--r--spec/javascripts/repo/components/repo_commit_section_spec.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/javascripts/repo/components/repo_commit_section_spec.js b/spec/javascripts/repo/components/repo_commit_section_spec.js
index 052075156ae..1d24b7c2943 100644
--- a/spec/javascripts/repo/components/repo_commit_section_spec.js
+++ b/spec/javascripts/repo/components/repo_commit_section_spec.js
@@ -122,7 +122,7 @@ describe('RepoCommitSection', () => {
expect(submitCommit.querySelector('.fa-spinner.fa-spin')).toBeTruthy();
const args = RepoService.commitFiles.calls.allArgs()[0];
- const { commit_message, actions, branch: payloadBranch } = args[0];
+ const { commit_message, start_branch, actions, branch: payloadBranch } = args[0];
expect(commit_message).toBe(commitMessage);
expect(actions.length).toEqual(2);