Commit 13e2837d0c7232aafb2bc08b990ff6615462264d
1 parent
b675fe35
Exists in
master
and in
29 other branches
Adjusting test
(ActionItem1665)
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
test/unit/article_test.rb
... | ... | @@ -90,7 +90,7 @@ class ArticleTest < Test::Unit::TestCase |
90 | 90 | profile = create_user('testinguser').person |
91 | 91 | a = fast_create(Article, :name => 'my article', :profile_id => profile.id) |
92 | 92 | a.expects(:body).returns('<p>the first paragraph of the article</p> The second paragraph') |
93 | - assert_equal '<p>the first paragraph of the article</p>', a.first_paragraph | |
93 | + assert_equal 'the first paragraph of the article', a.first_paragraph | |
94 | 94 | end |
95 | 95 | |
96 | 96 | should 'inform the icon to be used' do | ... | ... |