From 042b047fc87ba4f76178383f9b5738cfbb9eb16c Mon Sep 17 00:00:00 2001 From: Robert Speicher Date: Sun, 6 Mar 2016 16:34:43 -0500 Subject: [PATCH] Remove unused `another_email` factory --- spec/factories/emails.rb | 10 +--------- 1 file changed, 1 insertion(+), 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