diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-12-12 12:07:09 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2008-12-12 12:07:09 +0000 |
commit | 72d0843c1fefedd44742a2d7e05ce46047d17b93 (patch) | |
tree | 84da338c024e8e06f2db7d73f5ae8ec32533589c /test/integration/account_test.rb | |
parent | da98386bf748abde381c5681d70f9a5ea32fadee (diff) | |
download | redmine-72d0843c1fefedd44742a2d7e05ce46047d17b93.tar.gz redmine-72d0843c1fefedd44742a2d7e05ce46047d17b93.zip |
Makes User.find_by_mail case-insensitive (password reminder #2322, repo users mapping).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2122 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/integration/account_test.rb')
-rw-r--r-- | test/integration/account_test.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/integration/account_test.rb b/test/integration/account_test.rb index c349200d3..c6cfd080e 100644 --- a/test/integration/account_test.rb +++ b/test/integration/account_test.rb @@ -44,7 +44,7 @@ class AccountTest < ActionController::IntegrationTest assert_response :success assert_template "account/lost_password" - post "account/lost_password", :mail => 'jsmith@somenet.foo' + post "account/lost_password", :mail => 'jSmith@somenet.foo' assert_redirected_to "account/login" token = Token.find(:first) |