mirror of
https://github.com/redmine/redmine.git
synced 2025-11-08 14:26:04 +01:00
Fixes failing tests on postgresql (#29894).
git-svn-id: https://svn.redmine.org/redmine/trunk@22808 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -1981,7 +1981,13 @@ class IssuesControllerTest < Redmine::ControllerTest
|
|||||||
)
|
)
|
||||||
|
|
||||||
assert_response :success
|
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
|
end
|
||||||
|
|
||||||
def test_index_with_estimated_hours_total
|
def test_index_with_estimated_hours_total
|
||||||
|
|||||||
Reference in New Issue
Block a user