diff options
author | Robert Speicher <rspeicher@gmail.com> | 2016-03-06 16:34:43 -0500 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2016-03-06 16:34:43 -0500 |
commit | 042b047fc87ba4f76178383f9b5738cfbb9eb16c (patch) | |
tree | b6d50629d2773fbbd08afccbd3c7535ca1a10a74 /spec | |
parent | b8a1f1c42d886359d139f737d78bf5ecf8f4286a (diff) | |
download | gitlab-ce-042b047fc87ba4f76178383f9b5738cfbb9eb16c.tar.gz |
Remove unused `another_email` factory
Diffstat (limited to 'spec')
-rw-r--r-- | spec/factories/emails.rb | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/spec/factories/emails.rb b/spec/factories/emails.rb index ed072213153..9794772ac7d 100644 --- a/spec/factories/emails.rb +++ b/spec/factories/emails.rb @@ -1,14 +1,6 @@ FactoryGirl.define do factory :email do user - email do - FFaker::Internet.email('alias') - end - - factory :another_email do - email do - FFaker::Internet.email('another.alias') - end - end + email { FFaker::Internet.email('alias') } end end |