aboutsummaryrefslogtreecommitdiffstats
path: root/spec/factories
diff options
context:
space:
mode:
authorZog2018-01-12 09:53:38 +0100
committerZog2018-02-26 10:00:34 +0100
commit9af498376d51dbd505cf6d276a02e7bfb24e9aa5 (patch)
treea1ba49f6d708ef6a00e4dc91e21f3e973a949c85 /spec/factories
parent206bf218e1b84dbe53683ec2e3f983cd30f7ded1 (diff)
downloadchouette-core-9af498376d51dbd505cf6d276a02e7bfb24e9aa5.tar.bz2
Propose some improvements on CustomFields
Diffstat (limited to 'spec/factories')
-rw-r--r--spec/factories/custom_fields.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/factories/custom_fields.rb b/spec/factories/custom_fields.rb
index 2f5fae555..7c43a6147 100644
--- a/spec/factories/custom_fields.rb
+++ b/spec/factories/custom_fields.rb
@@ -4,6 +4,6 @@ FactoryGirl.define do
resource_type "VehicleJourney"
sequence(:name){|n| "custom field ##{n}"}
field_type "list"
- options( { "capacity" => "0" } )
+ options( { capacity: "0" } )
end
end