瀏覽代碼

System test fails in Windows due to "/" path separator (#35024).

Patch by Pavel Rosický.


git-svn-id: http://svn.redmine.org/redmine/trunk@20915 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/5.0.0
Go MAEDA 3 年之前
父節點
當前提交
4d29d86c3d
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      test/application_system_test_case.rb

+ 1
- 1
test/application_system_test_case.rb 查看文件

@@ -38,7 +38,7 @@ class ApplicationSystemTestCase < ActionDispatch::SystemTestCase
'goog:chromeOptions' => {
'args' => GOOGLE_CHROME_OPTS_ARGS,
'prefs' => {
'download.default_directory' => DOWNLOADS_PATH,
'download.default_directory' => DOWNLOADS_PATH.gsub(File::SEPARATOR, File::ALT_SEPARATOR || File::SEPARATOR),
'download.prompt_for_download' => false,
'plugins.plugins_disabled' => ["Chrome PDF Viewer"]
}

Loading…
取消
儲存