Commit 1d5d73af authored by Holger Just's avatar Holger Just

Fix RepositoriesFilesystemControllerTest for jRuby

Iconv on jRuby does not accept an empty string as "from" encoding.
Use the default behavior from the controller instead to leave it
unspecified and thuse use UTF-8.
parent c83c1d9a
......@@ -37,7 +37,7 @@ class RepositoriesFilesystemControllerTest < ActionController::TestCase
@repository = Repository::Filesystem.create(
:project => Project.find(PRJ_ID),
:url => REPOSITORY_PATH,
:path_encoding => ''
:path_encoding => nil
)
assert @repository
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment