diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-09 16:05:22 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2019-11-09 16:05:22 +0000 |
commit | 8bf12d80262790b2a5b10b0704add913dbcb58f9 (patch) | |
tree | adbccd1bc26431bbc4bf4896a1ff33883728e8b9 /test/unit | |
parent | c6b1f52eb5264db9b21aa9789e9067e0ced68248 (diff) | |
download | redmine-8bf12d80262790b2a5b10b0704add913dbcb58f9.tar.gz redmine-8bf12d80262790b2a5b10b0704add913dbcb58f9.zip |
cleanup: rubocop: fix Layout/AlignArguments in test/unit/lib/redmine/scm/adapters/filesystem_adapter_test.rb
git-svn-id: http://svn.redmine.org/redmine/trunk@19030 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/lib/redmine/scm/adapters/filesystem_adapter_test.rb | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/unit/lib/redmine/scm/adapters/filesystem_adapter_test.rb b/test/unit/lib/redmine/scm/adapters/filesystem_adapter_test.rb index f52404cb6..f3e0ec6fe 100644 --- a/test/unit/lib/redmine/scm/adapters/filesystem_adapter_test.rb +++ b/test/unit/lib/redmine/scm/adapters/filesystem_adapter_test.rb @@ -37,8 +37,9 @@ class FilesystemAdapterTest < ActiveSupport::TestCase end # If y try to use "..", the path is ignored ["/../","dir/../", "..", "../", "/..", "dir/.."].each do |path| - assert_equal ["dir", "japanese", "test"], @adapter.entries(path).collect(&:name), - ".. must be ignored in path argument" + assert_equal( + ["dir", "japanese", "test"], @adapter.entries(path).collect(&:name), + ".. must be ignored in path argument") end end |