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
# and identifier
def generate_project!(attributes={})
identifier = "a"+Redmine::Utils.random_hex(6)
Project.generate!({
identifier = "a" + Redmine::Utils.random_hex(6)
Project.generate!(
{
:identifier => identifier,
:name => identifier,
:tracker_ids => [],
:enabled_module_names => []
}.merge(attributes))
}.merge(attributes)
)
end
end