diff options
author | Alfredo Sumaran <alfredo@gitlab.com> | 2016-08-05 02:09:28 -0500 |
---|---|---|
committer | Alfredo Sumaran <alfredo@gitlab.com> | 2016-08-05 17:19:01 -0500 |
commit | cd086eba79378465d820733b38d5e92fc1c8689d (patch) | |
tree | 186a9c77b16d3a8caf8d0ed1c44669f42bfb68f6 | |
parent | bb02065a5dfbda79874ee41cb128e63b97b50a37 (diff) | |
download | gitlab-ce-cd086eba79378465d820733b38d5e92fc1c8689d.tar.gz |
Wrap param with parens for consistency
-rw-r--r-- | spec/features/protected_branches_spec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/features/protected_branches_spec.rb b/spec/features/protected_branches_spec.rb index ebbbca5d2f4..3499460c84d 100644 --- a/spec/features/protected_branches_spec.rb +++ b/spec/features/protected_branches_spec.rb @@ -11,7 +11,7 @@ feature 'Projected Branches', feature: true, js: true do def set_protected_branch_name(branch_name) find(".js-protected-branch-select").click find(".dropdown-input-field").set(branch_name) - click_on "Create wildcard #{branch_name}" + click_on("Create wildcard #{branch_name}") end describe "explicit protected branches" do |