]> source.dussan.org Git - redmine.git/commitdiff
cleanup: rubocop: fix Layout/AlignArguments in test/unit/lib/redmine/scm/adapters...
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 9 Nov 2019 16:05:22 +0000 (16:05 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Sat, 9 Nov 2019 16:05:22 +0000 (16:05 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@19030 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/unit/lib/redmine/scm/adapters/filesystem_adapter_test.rb

index f52404cb6af51b4f9d55f58b41a58b04053f174c..f3e0ec6fe5306b4275460f99198bd18e05cd3471 100644 (file)
@@ -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