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:
authorZeger-Jan van de Weg <zegerjan@gitlab.com>2016-04-16 22:09:08 +0300
committerZeger-Jan van de Weg <zegerjan@gitlab.com>2016-05-06 11:47:11 +0300
commit3bdc57f0a710b3769381ecad7ea4098223ecff56 (patch)
treeabfe22d7d40c7d3e2912d659b045273254767dea /spec/factories/notes.rb
parent05920a7964a039fd65d6b665c2ebd130d5ef949c (diff)
Create table for award emoji
Diffstat (limited to 'spec/factories/notes.rb')
-rw-r--r--spec/factories/notes.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/spec/factories/notes.rb b/spec/factories/notes.rb
index e5dcb159014..2bfc5effd78 100644
--- a/spec/factories/notes.rb
+++ b/spec/factories/notes.rb
@@ -36,8 +36,6 @@ FactoryGirl.define do
factory :note_on_merge_request_diff, traits: [:on_merge_request, :on_diff]
factory :note_on_project_snippet, traits: [:on_project_snippet]
factory :system_note, traits: [:system]
- factory :downvote_note, traits: [:award, :downvote]
- factory :upvote_note, traits: [:award, :upvote]
trait :on_commit do
project
@@ -69,10 +67,6 @@ FactoryGirl.define do
system true
end
- trait :award do
- is_award true
- end
-
trait :downvote do
note "thumbsdown"
end