Fix issue with test since Mod topics aren't visible to anonymous

This commit is contained in:
BrokenEagle
2020-07-20 00:25:44 +00:00
parent 396e9c6ef4
commit 7291de42f4

View File

@@ -121,7 +121,7 @@ class ForumTopicsControllerTest < ActionDispatch::IntegrationTest
should "render for a sitemap" do
get forum_topics_path(format: :sitemap)
assert_response :success
assert_equal(ForumTopic.count, response.parsed_body.css("urlset url loc").size)
assert_equal(ForumTopic.visible(User.anonymous).count, response.parsed_body.css("urlset url loc").size)
end
context "with private topics" do