Update spec

This commit is contained in:
Jan-Gerd Tenberge 2015-10-19 01:21:21 +02:00
parent 4957415e00
commit 7d7b6dbb9f
1 changed files with 2 additions and 2 deletions

View File

@ -95,9 +95,9 @@ describe ApplicationHelper do
end
it 'should call gravatar_icon when no User exists with the given email' do
expect(helper).to receive(:gravatar_icon).with('foo@example.com', 20)
expect(helper).to receive(:gravatar_icon).with('foo@example.com', 20, 2)
helper.avatar_icon('foo@example.com', 20)
helper.avatar_icon('foo@example.com', 20, 2)
end
end