Commit b0ec005103c401eade09a303c4ccb5a5fa1b40a4
1 parent
90df319e
Exists in
master
and in
29 other branches
Fix failing test
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
test/unit/blog_archives_block_test.rb
... | ... | @@ -163,7 +163,7 @@ class BlogArchivesBlockTest < ActiveSupport::TestCase |
163 | 163 | block = fast_create(BlogArchivesBlock) |
164 | 164 | |
165 | 165 | feed = mock() |
166 | - feed.stubs(:url).returns('feed_url') | |
166 | + feed.stubs(:url).returns(blog.url) | |
167 | 167 | blog.stubs(:feed).returns(feed) |
168 | 168 | block.stubs(:blog).returns(blog) |
169 | 169 | block.stubs(:owner).returns(profile) | ... | ... |