diff options
author | Go MAEDA <maeda@farend.jp> | 2024-11-04 04:55:46 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-11-04 04:55:46 +0000 |
commit | 45bcea9805fd1d22c61abc46b0512e4babf5e1f5 (patch) | |
tree | 8242cbc6d8cc2b07483e32408ea401bc8b8d3e01 /test | |
parent | 071971131fe0abd3df681f69c4005418d9235975 (diff) | |
download | redmine-45bcea9805fd1d22c61abc46b0512e4babf5e1f5.tar.gz redmine-45bcea9805fd1d22c61abc46b0512e4babf5e1f5.zip |
Add missing fixture `:enumerations` to TrackersControllerTest (#12521).
git-svn-id: https://svn.redmine.org/redmine/trunk@23210 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/trackers_controller_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/trackers_controller_test.rb b/test/functional/trackers_controller_test.rb index 6f62c9f0a..61364fc07 100644 --- a/test/functional/trackers_controller_test.rb +++ b/test/functional/trackers_controller_test.rb @@ -20,7 +20,7 @@ require_relative '../test_helper' class TrackersControllerTest < Redmine::ControllerTest - fixtures :trackers, :projects, :projects_trackers, :users, :issues, :custom_fields, :issue_statuses + fixtures :trackers, :projects, :projects_trackers, :users, :issues, :custom_fields, :issue_statuses, :enumerations; def setup User.current = nil |