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:
authorJasper Maes <jaspermaes.jm@gmail.com>2018-12-19 22:50:20 +0300
committerJasper Maes <jaspermaes.jm@gmail.com>2018-12-21 12:10:26 +0300
commitbf7352007920318ea361674a02fbff6823bbe5a8 (patch)
treec4c64947bb66cfbe2f15d59946b4bf2695e6418f /spec/support/issuables_requiring_filter_shared_examples.rb
parentf1464680c15c96d3dcc6f61aa3a8d77b72f4d098 (diff)
convert specs in javascripts/ and support/ to new syntax
Diffstat (limited to 'spec/support/issuables_requiring_filter_shared_examples.rb')
-rw-r--r--spec/support/issuables_requiring_filter_shared_examples.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/issuables_requiring_filter_shared_examples.rb b/spec/support/issuables_requiring_filter_shared_examples.rb
index 439ef5ed92e..71bcc82ee58 100644
--- a/spec/support/issuables_requiring_filter_shared_examples.rb
+++ b/spec/support/issuables_requiring_filter_shared_examples.rb
@@ -10,6 +10,6 @@ shared_examples 'issuables requiring filter' do |action|
it "loads issuables if at least one filter is set" do
expect_any_instance_of(described_class).to receive(:issuables_collection).and_call_original
- get action, author_id: user.id
+ get action, params: { author_id: user.id }
end
end