summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-10-27 15:18:09 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-10-27 15:18:09 +0000
commit58a5f38ceeef11b7c809eeebcc4a645c99b7dcd7 (patch)
treed226a9d5fce7a3fc0c82cf71135b2840c84f6a24 /test
parentead5d6b29a930d8824535cbece343337ec07eb69 (diff)
downloadredmine-58a5f38ceeef11b7c809eeebcc4a645c99b7dcd7.tar.gz
redmine-58a5f38ceeef11b7c809eeebcc4a645c99b7dcd7.zip
fix source indent of test/unit/version_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@20206 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r--test/unit/version_test.rb11
1 files changed, 6 insertions, 5 deletions
diff --git a/test/unit/version_test.rb b/test/unit/version_test.rb
index af752f0a1..5eb782e90 100644
--- a/test/unit/version_test.rb
+++ b/test/unit/version_test.rb
@@ -322,11 +322,12 @@ class VersionTest < ActiveSupport::TestCase
assert_nil version.custom_field_value(cf2)
version.send(
:safe_attributes=,
- {'custom_fields' =>
- [
- {'id' => cf1.id.to_s, 'value' => 'valuea'},
- {'id' => cf2.id.to_s, 'value' => 'valueb'}
- ]
+ {
+ 'custom_fields' =>
+ [
+ {'id' => cf1.id.to_s, 'value' => 'valuea'},
+ {'id' => cf2.id.to_s, 'value' => 'valueb'}
+ ]
},
user
)