Change the default value for "Time span format" from "decimal" to "minutes" (#36391).

git-svn-id: http://svn.redmine.org/redmine/trunk@21355 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA
2022-01-08 04:04:50 +00:00
parent 4fbbcf3cdf
commit f670f0e572
11 changed files with 52 additions and 52 deletions

View File

@@ -162,7 +162,7 @@ class VersionsControllerTest < Redmine::ControllerTest
assert_select 'a', :text => '1 open'
end
assert_select '.time-tracking td.total-hours a:first-child', :text => '2.00 hours'
assert_select '.time-tracking td.total-hours a:first-child', :text => '2:00 hours'
end
def test_show_should_link_to_spent_time_on_version
@@ -173,7 +173,7 @@ class VersionsControllerTest < Redmine::ControllerTest
get :show, :params => {:id => version.id}
assert_response :success
assert_select '.total-hours', :text => '7.20 hours'
assert_select '.total-hours', :text => '7:12 hours'
assert_select '.total-hours a[href=?]', "/projects/ecookbook/time_entries?issue.fixed_version_id=#{version.id}&set_filter=1"
end