summaryrefslogtreecommitdiff
path: root/features
diff options
context:
space:
mode:
authorRobert Schilling <rschilling@student.tugraz.at>2014-09-24 10:28:15 +0200
committerRobert Schilling <rschilling@student.tugraz.at>2014-09-24 10:28:15 +0200
commitb794fdbbbe991227b425b7736f676310b387da1a (patch)
treea21c6ae2b935f3140f057d97a1dca32e74151453 /features
parentb64702316d44e6087a3bdad4da12f34558a7d608 (diff)
parentb9c2e6ebdc17f1e57cdf8161fde661340eb7d1ed (diff)
downloadgitlab-ce-b794fdbbbe991227b425b7736f676310b387da1a.tar.gz
Merge pull request #7838 from cirosantilli/evaluate-exec
evaluate -> execute_script when return not needed.
Diffstat (limited to 'features')
-rw-r--r--features/steps/project/multiselect_blob.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/features/steps/project/multiselect_blob.rb b/features/steps/project/multiselect_blob.rb
index 319a66f3494..611289a6162 100644
--- a/features/steps/project/multiselect_blob.rb
+++ b/features/steps/project/multiselect_blob.rb
@@ -12,7 +12,7 @@ class Spinach::Features::ProjectMultiselectBlob < Spinach::FeatureSteps
step "I shift-click line #{line_number} in file" do
script = "$('#L#{line_number}').trigger($.Event('click', { shiftKey: true }));"
- page.evaluate_script(script)
+ execute_script(script)
end
end
end