Fix broken test

This commit is contained in:
Carlos Sanchez 2006-07-20 18:43:58 +00:00
parent 9a337d2fea
commit f7cb31a301
1 changed files with 1 additions and 1 deletions

View File

@ -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());
}
}