Skip to content

Commit

Permalink
Remove whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
sarogers committed Feb 5, 2014
1 parent 821e503 commit 9b5b6d4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions spec/email_parser_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

describe "EmailParser" do
describe '#parser' do

it "parses CSV emails" do
emails = "[email protected], [email protected]"
expect(EmailParser.new(emails).parse).to eq(["[email protected]", "[email protected]"])
Expand All @@ -22,9 +21,8 @@

it 'parses and removes duplicate emails' do
emails = "[email protected], [email protected]"

expect(EmailParser.new(emails).parse).to eq(["[email protected]"])
end

end
end

0 comments on commit 9b5b6d4

Please sign in to comment.