summaryrefslogtreecommitdiffstats
path: root/test/unit
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-10-05 15:47:58 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2020-10-05 15:47:58 +0000
commitee7fe716931fbb62f6ed3af4fe018bfce96862df (patch)
tree308e871ff9240465d3b01fbea12748d5461c8875 /test/unit
parent7838afb39b15ee03fd53a3d1dba0c3440487e658 (diff)
downloadredmine-ee7fe716931fbb62f6ed3af4fe018bfce96862df.tar.gz
redmine-ee7fe716931fbb62f6ed3af4fe018bfce96862df.zip
add space after comma to FilesystemAdapterTest
git-svn-id: http://svn.redmine.org/redmine/trunk@20127 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/unit')
-rw-r--r--test/unit/lib/redmine/scm/adapters/filesystem_adapter_test.rb2
1 files changed, 1 insertions, 1 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 73efc002b..f32b93df1 100644
--- a/test/unit/lib/redmine/scm/adapters/filesystem_adapter_test.rb
+++ b/test/unit/lib/redmine/scm/adapters/filesystem_adapter_test.rb
@@ -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")