From f7cb31a301c68b5c6b5ae27fe18f11d925d57976 Mon Sep 17 00:00:00 2001 From: Carlos Sanchez Date: Thu, 20 Jul 2006 18:43:58 +0000 Subject: [PATCH] Fix broken test --- .../providers/dao/DaoAuthenticationProviderTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/test/java/org/acegisecurity/providers/dao/DaoAuthenticationProviderTests.java b/core/src/test/java/org/acegisecurity/providers/dao/DaoAuthenticationProviderTests.java index 74919b7a1b..9a35690cb4 100644 --- a/core/src/test/java/org/acegisecurity/providers/dao/DaoAuthenticationProviderTests.java +++ b/core/src/test/java/org/acegisecurity/providers/dao/DaoAuthenticationProviderTests.java @@ -341,7 +341,7 @@ public class DaoAuthenticationProviderTests extends TestCase { provider.authenticate(token); fail("Should have thrown AuthenticationServiceException"); } catch (AuthenticationServiceException expected) { - assertEquals("AuthenticationDao returned null, which is an interface contract violation", + assertEquals("UserDetailsService returned null, which is an interface contract violation", expected.getMessage()); } }