Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlfredo Sumaran <alfredo@gitlab.com>2016-08-05 10:09:28 +0300
committerAlfredo Sumaran <alfredo@gitlab.com>2016-08-06 01:19:01 +0300
commitcd086eba79378465d820733b38d5e92fc1c8689d (patch)
tree186a9c77b16d3a8caf8d0ed1c44669f42bfb68f6 /spec/features/protected_branches_spec.rb
parentbb02065a5dfbda79874ee41cb128e63b97b50a37 (diff)
Wrap param with parens for consistency
Diffstat (limited to 'spec/features/protected_branches_spec.rb')
-rw-r--r--spec/features/protected_branches_spec.rb2
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