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:
authorAlexis Reigel <alexis.reigel.ext@siemens.com>2018-07-03 20:28:09 +0300
committerAlexis Reigel <alexis.reigel.ext@siemens.com>2018-08-29 16:02:54 +0300
commit89b30999c294d2e344d095e635d72aa16d108a2b (patch)
treeb29241e1c81ff277d8df531071429d924546b4a7 /spec/finders
parentd4387d88767d76666e32feaab9deb48d43b6249a (diff)
use filtered search bar for admin runners
Diffstat (limited to 'spec/finders')
-rw-r--r--spec/finders/admin/runners_finder_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/finders/admin/runners_finder_spec.rb b/spec/finders/admin/runners_finder_spec.rb
index cc47c4ec406..757e4d52e90 100644
--- a/spec/finders/admin/runners_finder_spec.rb
+++ b/spec/finders/admin/runners_finder_spec.rb
@@ -23,7 +23,7 @@ describe Admin::RunnersFinder do
it 'calls the corresponding scope on Ci::Runner' do
expect(Ci::Runner).to receive(:paused).and_call_original
- described_class.new(params: { status: 'paused' }).execute
+ described_class.new(params: { status_status: 'paused' }).execute
end
end