From 77314ebe8fdd84d77b49d8e17ef79cd94ff9bf1b Mon Sep 17 00:00:00 2001 From: Jean-Philippe Lang Date: Sat, 17 Mar 2012 12:18:23 +0000 Subject: [PATCH] Fixed test names (#1913). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9242 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- test/unit/user_test.rb | 4 ++-- 1 file 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