File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
servlet/security-basicauth/src/test/java/org/javaee7/servlet/security/basicauth Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,15 +45,15 @@ public void setup() {
4545 }
4646
4747 @ Test
48- public void testWithCorrectCredentials () throws Exception {
48+ public void testGetWithCorrectCredentials () throws Exception {
4949 WebClient webClient = new WebClient ();
5050 webClient .setCredentialsProvider (correctCreds );
5151 HtmlPage page = webClient .getPage (base + "/SecureServlet" );
5252 assertEquals ("Servlet Security - Basic Auth with File-base Realm" , page .getTitleText ());
5353 }
5454
5555 @ Test
56- public void testWithIncorrectCredentials () throws Exception {
56+ public void testGetWithIncorrectCredentials () throws Exception {
5757 WebClient webClient = new WebClient ();
5858 webClient .setCredentialsProvider (incorrectCreds );
5959 try {
You can’t perform that action at this time.
0 commit comments