Commit e44e2316c3e223955847859492f6f9bd7974e50e

Authored by Dmitriy Zaporozhets
1 parent 7be80fd8

Change gravatar tests to identicon

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
spec/helpers/application_helper_spec.rb
@@ -69,7 +69,7 @@ describe ApplicationHelper do @@ -69,7 +69,7 @@ describe ApplicationHelper do
69 it "should call gravatar_icon when no avatar is present" do 69 it "should call gravatar_icon when no avatar is present" do
70 user = create(:user, email: 'test@example.com') 70 user = create(:user, email: 'test@example.com')
71 user.save! 71 user.save!
72 - avatar_icon(user.email).to_s.should == "http://www.gravatar.com/avatar/55502f40dc8b7c769880b10874abc9d0?s=40&d=mm" 72 + avatar_icon(user.email).to_s.should == "http://www.gravatar.com/avatar/55502f40dc8b7c769880b10874abc9d0?s=40&d=identicon"
73 end 73 end
74 end 74 end
75 75