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
path: root/spec
diff options
context:
space:
mode:
authorAndrew8xx8 <avk@8xx8.ru>2013-02-12 10:54:56 +0400
committerAndrew8xx8 <avk@8xx8.ru>2013-02-12 10:54:56 +0400
commit9a22ac63eca587d5efd56d626b7579236734cda0 (patch)
treeffd75579a23f51cd486949e4ed1db5c783c6656b /spec
parentd138b3de4bf7c238e09bb56e2de8b46ba756bc5f (diff)
Dynamic values must be in blocks if FG
Diffstat (limited to 'spec')
-rw-r--r--spec/factories.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/factories.rb b/spec/factories.rb
index 0e0c04f9875..ae9066cb30c 100644
--- a/spec/factories.rb
+++ b/spec/factories.rb
@@ -123,7 +123,7 @@ FactoryGirl.define do
factory :event do
factory :closed_issue_event do
project
- action Event::Closed
+ action { Event::Closed }
target factory: :closed_issue
author factory: :user
end