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:
Diffstat (limited to 'spec/services/git/wiki_push_service/change_spec.rb')
-rw-r--r--spec/services/git/wiki_push_service/change_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/services/git/wiki_push_service/change_spec.rb b/spec/services/git/wiki_push_service/change_spec.rb
index 547874270ab..4da3f0fc738 100644
--- a/spec/services/git/wiki_push_service/change_spec.rb
+++ b/spec/services/git/wiki_push_service/change_spec.rb
@@ -89,20 +89,20 @@ describe Git::WikiPushService::Change do
context 'the page is deleted' do
let(:operation) { :deleted }
- it { is_expected.to have_attributes(event_action: Event::DESTROYED) }
+ it { is_expected.to have_attributes(event_action: :destroyed) }
end
context 'the page is added' do
let(:operation) { :added }
- it { is_expected.to have_attributes(event_action: Event::CREATED) }
+ it { is_expected.to have_attributes(event_action: :created) }
end
%i[renamed modified].each do |op|
context "the page is #{op}" do
let(:operation) { op }
- it { is_expected.to have_attributes(event_action: Event::UPDATED) }
+ it { is_expected.to have_attributes(event_action: :updated) }
end
end
end