summaryrefslogtreecommitdiff
path: root/spec/helpers
diff options
context:
space:
mode:
authorJan-Gerd Tenberge <janten@gmail.com>2015-10-19 01:21:21 +0200
committerJan-Gerd Tenberge <janten@gmail.com>2015-10-19 01:21:21 +0200
commit7d7b6dbb9f2a8c6dbee8ab6eb0ab075705abcfbd (patch)
treef10419983b45de9a0bfcc3617729935fc6c4c500 /spec/helpers
parent4957415e00207e0eae6184237f19bcd7c7401598 (diff)
downloadgitlab-ce-7d7b6dbb9f2a8c6dbee8ab6eb0ab075705abcfbd.tar.gz
Update spec
Diffstat (limited to 'spec/helpers')
-rw-r--r--spec/helpers/application_helper_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/helpers/application_helper_spec.rb b/spec/helpers/application_helper_spec.rb
index 742420f550e..b5a29346dcd 100644
--- a/spec/helpers/application_helper_spec.rb
+++ b/spec/helpers/application_helper_spec.rb
@@ -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