diff options
| author | cedricnjanga | 2017-10-24 17:37:18 +0200 |
|---|---|---|
| committer | cedricnjanga | 2017-10-24 17:37:18 +0200 |
| commit | 2568e7f7553c82adb0bed1521ef9f013df9df87e (patch) | |
| tree | 7223c6f625be942063f259cce0a504349defa2fb | |
| parent | f4aa0048c144e4d382184213f76ace9f4109577d (diff) | |
| download | chouette-core-2568e7f7553c82adb0bed1521ef9f013df9df87e.tar.bz2 | |
Fix typo in import factory
| -rw-r--r-- | spec/factories/imports.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/factories/imports.rb b/spec/factories/imports.rb index e9986b074..e07447b60 100644 --- a/spec/factories/imports.rb +++ b/spec/factories/imports.rb @@ -14,8 +14,9 @@ FactoryGirl.define do after(:build) do |import| import.class.skip_callback(:create, :before, :initialize_fields) end + end - factory :badimport do + factory :bad_import do sequence(:name) { |n| "Import #{n}" } current_step_id "MyString" current_step_progress 1.5 |
