1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-04-06 16:01:39 +00:00

fix source indent of test/unit/project_nested_set_concurrency_test.rb

git-svn-id: http://svn.redmine.org/redmine/trunk@20565 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2020-12-04 13:58:43 +00:00
parent 8e650a9021
commit f920891084

View File

@ -68,12 +68,14 @@ class ProjectNestedSetConcurrencyTest < ActiveSupport::TestCase
# Generates a bare project with random name # Generates a bare project with random name
# and identifier # and identifier
def generate_project!(attributes={}) def generate_project!(attributes={})
identifier = "a"+Redmine::Utils.random_hex(6) identifier = "a" + Redmine::Utils.random_hex(6)
Project.generate!({ Project.generate!(
{
:identifier => identifier, :identifier => identifier,
:name => identifier, :name => identifier,
:tracker_ids => [], :tracker_ids => [],
:enabled_module_names => [] :enabled_module_names => []
}.merge(attributes)) }.merge(attributes)
)
end end
end end