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