Rails3: test: replace deprecated errors.on at "fail without parent_id" of functional/projects_controller_test.rb

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7614 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-10-07 14:11:06 +00:00
parent d66aceb751
commit dba6341031
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ class ProjectsControllerTest < ActionController::TestCase
assert_response :success
project = assigns(:project)
assert_kind_of Project, project
assert_not_nil project.errors.on(:parent_id)
assert_not_nil project.errors[:parent_id]
end
should "fail with unauthorized parent_id" do