Commit 9630fd21c533c971e9795765f308651ecdfa442a

Authored by Rodrigo Souto
1 parent ad864378

profile_list_block_test: fix due to change on content_tag to tag

Showing 1 changed file with 1 additions and 0 deletions   Show diff stats
test/unit/profile_list_block_test.rb
... ... @@ -32,6 +32,7 @@ class ProfileListBlockTest < ActiveSupport::TestCase
32 32 self.expects(:profile_image_link).with(person2, :minor).once
33 33 self.expects(:profile_image_link).with(person3, :minor).once
34 34  
  35 + self.stubs(:tag).returns('<div></div>')
35 36 self.expects(:content_tag).returns('<div></div>').at_least_once
36 37 self.expects(:block_title).returns('block title').at_least_once
37 38  
... ...