Przeglądaj źródła

Fixes failing tests on postgresql (#29894).

git-svn-id: https://svn.redmine.org/redmine/trunk@22808 e93f8b46-1217-0410-a6f0-8f06a7374b81
pull/149/merge
Marius Balteanu 1 miesiąc temu
rodzic
commit
a4abae2324
1 zmienionych plików z 7 dodań i 1 usunięć
  1. 7
    1
      test/functional/issues_controller_test.rb

+ 7
- 1
test/functional/issues_controller_test.rb Wyświetl plik

@@ -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

Ładowanie…
Anuluj
Zapisz