Actions
Patch #40506
closedRemove redundant ApplicationHelper inclusions
Description
ApplicationHelper has already been included in ActionView::TestCase. Although some test classes inherit from ActionView::TestCase, they include ApplicationHelper in their own classes again. Therefore, we don't need to include ApplicationHelper in those classes because it is already included.
For example, the ancestry of WikiFormatting::MacrosTest is as follows, and it includes ApplicationHelper in the WikiFormatting::MacrosTest class again.
- WikiFormatting::MacrosTest < Redmine::HelperTest < ActionView::TestCase
Files
Updated by Takuya Kodama 8 months ago
Updated by Marius BĂLTEANU 8 months ago
The tests are failing https://www.redmine.org/builds/
Updated by Marius BĂLTEANU 7 months ago
- Status changed from Reopened to Closed
Marius BĂLTEANU wrote in #note-4:
The tests are failing https://www.redmine.org/builds/
It was a random failing test.
Actions