diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-12-12 14:43:55 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2010-12-12 14:43:55 +0000 |
commit | 87ae744dce313076211ff472eb95edb65a048c82 (patch) | |
tree | 3c7e3f5397563838fa5f0b0694a01f031bd511c0 /test | |
parent | 2066b2f6665156670c7dcbff944cc3c5a827075d (diff) | |
download | redmine-87ae744dce313076211ff472eb95edb65a048c82.tar.gz redmine-87ae744dce313076211ff472eb95edb65a048c82.zip |
Fixes test according to r4493.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4498 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/integration/admin_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/admin_test.rb b/test/integration/admin_test.rb index 1600f89bd..af44d5226 100644 --- a/test/integration/admin_test.rb +++ b/test/integration/admin_test.rb @@ -25,7 +25,7 @@ class AdminTest < ActionController::IntegrationTest get "/users/new" assert_response :success assert_template "users/new" - post "/users/create", :user => { :login => "psmith", :firstname => "Paul", :lastname => "Smith", :mail => "psmith@somenet.foo", :language => "en" }, :password => "psmith09", :password_confirmation => "psmith09" + post "/users/create", :user => { :login => "psmith", :firstname => "Paul", :lastname => "Smith", :mail => "psmith@somenet.foo", :language => "en", :password => "psmith09", :password_confirmation => "psmith09" } user = User.find_by_login("psmith") assert_kind_of User, user |