Commit ab36975b883473f1c9a06f9052a0771845df714a
1 parent
de1f4599
Exists in
master
and in
28 other branches
Removed default title of profile search block
(ActionItem1889)
Showing
2 changed files
with
2 additions
and
6 deletions
Show diff stats
app/models/profile_search_block.rb
test/unit/profile_search_block_test.rb
... | ... | @@ -6,8 +6,8 @@ class ProfileSearchBlockTest < Test::Unit::TestCase |
6 | 6 | assert_not_equal Block.description, ProfileSearchBlock.description |
7 | 7 | end |
8 | 8 | |
9 | - should 'provide a default title' do | |
10 | - assert_not_equal Block.new.default_title, ProfileSearchBlock.new.default_title | |
9 | + should 'not provide a default title' do | |
10 | + assert_equal Block.new.default_title, ProfileSearchBlock.new.default_title | |
11 | 11 | end |
12 | 12 | |
13 | 13 | should 'render profile search' do | ... | ... |