From: Marius Balteanu Date: Fri, 3 May 2024 08:24:49 +0000 (+0000) Subject: Fixes failing tests on postgresql (#29894). X-Git-Tag: 6.0.0~355 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=a4abae2324ef2d420a9cc99cb9867a89e5380004;p=redmine.git Fixes failing tests on postgresql (#29894). git-svn-id: https://svn.redmine.org/redmine/trunk@22808 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/test/functional/issues_controller_test.rb b/test/functional/issues_controller_test.rb index 7b8147ece..f7c879188 100644 --- a/test/functional/issues_controller_test.rb +++ b/test/functional/issues_controller_test.rb @@ -1981,7 +1981,13 @@ class IssuesControllerTest < Redmine::ControllerTest ) assert_response :success - assert_include "\"#{User.find(1).name}\n#{User.find(3).name}\"", response.body + + lines = CSV.parse(response.body) + # Issue with ID 2 is the second issue in the CSV + # Column 3 is watchers_users + watchers = lines[2][2].split("\n").sort + + assert_equal [User.find(3).name, User.find(1).name], watchers end def test_index_with_estimated_hours_total