Skip to content

Commit

Permalink
Fixed content sanitization test. Should have expected nil when conten…
Browse files Browse the repository at this point in the history
…t is sanitized away.
  • Loading branch information
sgeo committed Oct 11, 2007
1 parent 0f56300 commit 2c0a1a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/unit/atom_test.rb
Expand Up @@ -684,7 +684,7 @@ def test_feed_item_content_sanitization
) { |feed|
assert_equal(1, feed.items.size)
assert_equal(
"", feed.items[0].content, "Sanitization of content element failed")
nil, feed.items[0].content, "Sanitization of content element failed")
}
end
end

0 comments on commit 2c0a1a1

Please sign in to comment.