diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-04-07 00:21:55 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2014-04-07 00:21:55 +0000 |
commit | e8e9c046af2a3625215ea2dd98bd2c2f35ce46d9 (patch) | |
tree | fd8a03cfd1507042cc48050cc9f3ac998682324e | |
parent | 5d56f0f26f30b04ee5dd2079ae1e6633f9ef49c5 (diff) | |
download | redmine-e8e9c046af2a3625215ea2dd98bd2c2f35ce46d9.tar.gz redmine-e8e9c046af2a3625215ea2dd98bd2c2f35ce46d9.zip |
fix typos at unit version test
git-svn-id: http://svn.redmine.org/redmine/trunk@13061 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | test/unit/version_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/version_test.rb b/test/unit/version_test.rb index ea91476ef..55a315af0 100644 --- a/test/unit/version_test.rb +++ b/test/unit/version_test.rb @@ -93,7 +93,7 @@ class VersionTest < ActiveSupport::TestCase assert_progress_equal (100.0)/3, v.closed_percent end - def test_progress_should_consider_estimated_hours_to_weigth_issues + def test_progress_should_consider_estimated_hours_to_weight_issues project = Project.find(1) v = Version.create!(:project => project, :name => 'Progress') add_issue(v, :estimated_hours => 10) @@ -104,7 +104,7 @@ class VersionTest < ActiveSupport::TestCase assert_progress_equal 25.0/95.0*100, v.closed_percent end - def test_progress_should_consider_average_estimated_hours_to_weigth_unestimated_issues + def test_progress_should_consider_average_estimated_hours_to_weight_unestimated_issues project = Project.find(1) v = Version.create!(:project => project, :name => 'Progress') add_issue(v, :done_ratio => 20) |