]> source.dussan.org Git - redmine.git/commitdiff
Fixes test according to r4493.
authorJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 12 Dec 2010 14:43:55 +0000 (14:43 +0000)
committerJean-Philippe Lang <jp_lang@yahoo.fr>
Sun, 12 Dec 2010 14:43:55 +0000 (14:43 +0000)
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@4498 e93f8b46-1217-0410-a6f0-8f06a7374b81

test/integration/admin_test.rb

index 1600f89bd855f609210ca951ae43c24075c854b6..af44d5226c2ffcbc99fd8c44ecdb5747a4c56e80 100644 (file)
@@ -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