]> source.dussan.org Git - redmine.git/commitdiff
add space after comma to FilesystemAdapterTest
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 5 Oct 2020 15:47:58 +0000 (15:47 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Mon, 5 Oct 2020 15:47:58 +0000 (15:47 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20127 e93f8b46-1217-0410-a6f0-8f06a7374b81

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

index 73efc002b031dbea02d82e99eb965585e1aa5182..f32b93df13973938b8f3d6885dc705e043b65584 100644 (file)
@@ -36,7 +36,7 @@ class FilesystemAdapterTest < ActiveSupport::TestCase
         assert_equal ["subdir", "dirfile"], @adapter.entries(path).collect(&:name)
       end
       # If y try to use "..", the path is ignored
-      ["/../","dir/../", "..", "../", "/..", "dir/.."].each do |path|
+      ["/../", "dir/../", "..", "../", "/..", "dir/.."].each do |path|
         assert_equal(
           ["dir", "japanese", "test"], @adapter.entries(path).collect(&:name),
           ".. must be ignored in path argument")