From 56fb96a09ec69b64064ff6973d6f3acfeab87ecc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Pi=C4=8Dman?= Date: Wed, 19 Feb 2025 08:58:23 +0100 Subject: [PATCH] Link entries download error #1592 --- test/functional/dmsf_controller_test.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/functional/dmsf_controller_test.rb b/test/functional/dmsf_controller_test.rb index 689d7323..5422665a 100644 --- a/test/functional/dmsf_controller_test.rb +++ b/test/functional/dmsf_controller_test.rb @@ -703,7 +703,7 @@ class DmsfControllerTest < RedmineDmsf::Test::TestCase # Target project is not given post '/login', params: { username: 'jsmith', password: 'jsmith' } post "/projects/#{@project1.id}/dmsf/entries", - params: { ids: ["folder-link-#{@link1.id}"], ids: ["file-link-#{@link4.id}"], download_entries: true } + params: { ids: ["folder-link-#{@link1.id}", "file-link-#{@link4.id}"], download_entries: true } assert_response :success end end