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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2018-02-26 19:17:17 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2018-02-26 19:17:17 +0300
commit79d911204ca92c759b696d0b8db8e8d54af6e2f9 (patch)
tree978ff8f61a6be7a860535e6509899f44bdb28671 /spec/workers/plugin_worker_spec.rb
parent98831a4867f60f7b7ca02bebd8771ca23940e9c5 (diff)
Add plugin queue to all_queues.yml
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'spec/workers/plugin_worker_spec.rb')
-rw-r--r--spec/workers/plugin_worker_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/workers/plugin_worker_spec.rb b/spec/workers/plugin_worker_spec.rb
index 29c55482321..d64de05f211 100644
--- a/spec/workers/plugin_worker_spec.rb
+++ b/spec/workers/plugin_worker_spec.rb
@@ -21,7 +21,7 @@ describe PluginWorker do
allow(Gitlab::Plugin).to receive(:execute).with(filename, data).and_raise('Permission denied')
- expect { subject.perform(filename, data) }.to_not raise_error
+ expect { subject.perform(filename, data) }.not_to raise_error
end
end
end