diff options
-rw-r--r-- | spec/factories/labels.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/factories/labels.rb b/spec/factories/labels.rb index 8b12ee11af5..3b643237574 100644 --- a/spec/factories/labels.rb +++ b/spec/factories/labels.rb @@ -15,7 +15,7 @@ FactoryGirl.define do factory :label do - title "Bug" + sequence(:title) { |n| "bug-#{n}" } color "#990000" project end |