diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-03-10 06:08:07 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-03-10 06:08:07 +0000 |
commit | 232655bf32cd474d54de357b65ef43d77271117c (patch) | |
tree | d176e36660e41bb2b629237639015d4dde7d4414 /spec/workers | |
parent | f5ae9d0960aa422a65a2a22e230100257dddb9ed (diff) | |
download | gitlab-ce-232655bf32cd474d54de357b65ef43d77271117c.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/workers')
-rw-r--r-- | spec/workers/concerns/gitlab/notify_upon_death_spec.rb (renamed from spec/workers/concerns/gitlab/github_import/notify_upon_death_spec.rb) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/workers/concerns/gitlab/github_import/notify_upon_death_spec.rb b/spec/workers/concerns/gitlab/notify_upon_death_spec.rb index 200cdffd560..1c75ac99227 100644 --- a/spec/workers/concerns/gitlab/github_import/notify_upon_death_spec.rb +++ b/spec/workers/concerns/gitlab/notify_upon_death_spec.rb @@ -2,11 +2,11 @@ require 'spec_helper' -describe Gitlab::GithubImport::NotifyUponDeath do +describe Gitlab::NotifyUponDeath do let(:worker_class) do Class.new do include Sidekiq::Worker - include Gitlab::GithubImport::NotifyUponDeath + include Gitlab::NotifyUponDeath end end |