diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-03-17 12:18:23 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2012-03-17 12:18:23 +0000 |
commit | 77314ebe8fdd84d77b49d8e17ef79cd94ff9bf1b (patch) | |
tree | 406c5efa9d458f023108a864d03fe50405b734b5 | |
parent | fdeb398c5e06f642b52f91371c1740f0c828a259 (diff) | |
download | redmine-77314ebe8fdd84d77b49d8e17ef79cd94ff9bf1b.tar.gz redmine-77314ebe8fdd84d77b49d8e17ef79cd94ff9bf1b.zip |
Fixed test names (#1913).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9242 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | test/unit/user_test.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/user_test.rb b/test/unit/user_test.rb index 74d0f757e..1c85625e9 100644 --- a/test/unit/user_test.rb +++ b/test/unit/user_test.rb @@ -496,7 +496,7 @@ class UserTest < ActiveSupport::TestCase end context "with an unsuccessful authentication" do - should "return the user" do + should "return nil" do assert_nil User.try_to_login('example1', '11111') end end @@ -546,7 +546,7 @@ class UserTest < ActiveSupport::TestCase end context "with an unsuccessful authentication" do - should "return the user" do + should "return nil" do assert_nil User.try_to_login('example1', '11111') end end |