summaryrefslogtreecommitdiff
path: root/spec/workers
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2018-02-26 18:17:17 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2018-02-26 18:17:17 +0200
commit79d911204ca92c759b696d0b8db8e8d54af6e2f9 (patch)
tree978ff8f61a6be7a860535e6509899f44bdb28671 /spec/workers
parent98831a4867f60f7b7ca02bebd8771ca23940e9c5 (diff)
downloadgitlab-ce-79d911204ca92c759b696d0b8db8e8d54af6e2f9.tar.gz
Add plugin queue to all_queues.yml
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Diffstat (limited to 'spec/workers')
-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