소스 검색

Fix broken test

Carlos Sanchez 19 년 전
부모
커밋
f7cb31a301
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      core/src/test/java/org/acegisecurity/providers/dao/DaoAuthenticationProviderTests.java

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