diff options
| author | Luc Donnet | 2017-09-29 14:03:27 +0200 |
|---|---|---|
| committer | Luc Donnet | 2017-09-29 14:03:27 +0200 |
| commit | b11dede8b2f61c81458bf64328cc851987db688f (patch) | |
| tree | 5e1758f0bfcd17dfe5335301a40c931fad6f31a6 /spec | |
| parent | b55255e7ed06528f3610c43fbfafe10e741bbdcf (diff) | |
| download | chouette-core-b11dede8b2f61c81458bf64328cc851987db688f.tar.bz2 | |
Fix enumerize in compliance_check_resource Refs #4391
Diffstat (limited to 'spec')
| -rw-r--r-- | spec/factories/compliance_check_resources.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/factories/compliance_check_resources.rb b/spec/factories/compliance_check_resources.rb index 95be48de4..5438bd48e 100644 --- a/spec/factories/compliance_check_resources.rb +++ b/spec/factories/compliance_check_resources.rb @@ -1,7 +1,7 @@ FactoryGirl.define do factory :compliance_check_resource do - status :new - sequence(:name) { |n| "Compliance check resource #{n}" } association :compliance_check_set + sequence(:name) { |n| "Compliance check resource #{n}" } + status 'OK' end end |
