fixed broken test in build 47

This commit is contained in:
Vishal Puri 2007-05-17 12:49:58 +00:00
parent 3eb9870162
commit 1a06723404
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ public class DaoCasAuthoritiesPopulatorTests extends TestCase {
populator.afterPropertiesSet();
fail("Should have thrown IllegalArgumentException");
} catch (IllegalArgumentException expected) {
assertEquals("An authenticationDao must be set", expected.getMessage());
assertEquals("A UserDetailsService must be set", expected.getMessage());
}
}