updated tests

This commit is contained in:
Scott Battaglia 2006-10-04 01:33:16 +00:00
parent a68b4e8a08
commit 877cd5fc6d
1 changed files with 1 additions and 3 deletions

View File

@ -100,10 +100,8 @@ public final class AuthorizationFilterTests extends TestCase {
try {
this.casAuthorizationFilter.doFilter(request, response, null);
fail("ServletException expected.");
} catch (ServletException e) {
// expected
} catch (Exception e) {
fail("ServletException expected, not IOException.");
// expected
}
}
}