Skip to content
Snippets Groups Projects
Commit 2d98a486 authored by Eric Davis's avatar Eric Davis
Browse files

Fix failing test due to invalid HTML and missing initial journal

parent c0d26da3
No related merge requests found
...@@ -48,7 +48,7 @@ module JournalsHelper ...@@ -48,7 +48,7 @@ module JournalsHelper
if d = journal.render_detail(detail) if d = journal.render_detail(detail)
content_tag("li", d) content_tag("li", d)
end end
end.compact end.compact.join(' ')
end end
end end
......
...@@ -61,6 +61,7 @@ class IssuesTest < ActionController::IntegrationTest ...@@ -61,6 +61,7 @@ class IssuesTest < ActionController::IntegrationTest
# add then remove 2 attachments to an issue # add then remove 2 attachments to an issue
def test_issue_attachments def test_issue_attachments
Issue.find(1).recreate_initial_journal!
log_user('jsmith', 'jsmith') log_user('jsmith', 'jsmith')
set_tmp_attachments_directory set_tmp_attachments_directory
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment