This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit e627164acdd4aaae3056e7acdec694e477bba17a Author: Mark Thomas <ma...@apache.org> AuthorDate: Tue Feb 14 18:51:28 2023 +0000 Rename to avoid Ant trying to run it as a test --- .../authenticator/TestJaspicCallbackHandlerInAuthenticator.java | 2 +- .../{TestCallbackHandlerImpl.java => TesterCallbackHandlerImpl.java} | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/org/apache/catalina/authenticator/TestJaspicCallbackHandlerInAuthenticator.java b/test/org/apache/catalina/authenticator/TestJaspicCallbackHandlerInAuthenticator.java index 3902aee559..64b293c748 100644 --- a/test/org/apache/catalina/authenticator/TestJaspicCallbackHandlerInAuthenticator.java +++ b/test/org/apache/catalina/authenticator/TestJaspicCallbackHandlerInAuthenticator.java @@ -48,7 +48,7 @@ public class TestJaspicCallbackHandlerInAuthenticator { @Test public void testCustomCallbackHandlerCreation() throws Exception { testCallbackHandlerCreation("org.apache.catalina.authenticator.TestCallbackHandlerImpl", - TestCallbackHandlerImpl.class); + TesterCallbackHandlerImpl.class); } diff --git a/test/org/apache/catalina/authenticator/TestCallbackHandlerImpl.java b/test/org/apache/catalina/authenticator/TesterCallbackHandlerImpl.java similarity index 92% rename from test/org/apache/catalina/authenticator/TestCallbackHandlerImpl.java rename to test/org/apache/catalina/authenticator/TesterCallbackHandlerImpl.java index 44eb0598f0..b9893635c7 100644 --- a/test/org/apache/catalina/authenticator/TestCallbackHandlerImpl.java +++ b/test/org/apache/catalina/authenticator/TesterCallbackHandlerImpl.java @@ -22,9 +22,9 @@ import javax.security.auth.callback.Callback; import javax.security.auth.callback.CallbackHandler; import javax.security.auth.callback.UnsupportedCallbackException; -public class TestCallbackHandlerImpl implements CallbackHandler { +public class TesterCallbackHandlerImpl implements CallbackHandler { - public TestCallbackHandlerImpl() { + public TesterCallbackHandlerImpl() { // Default constructor required by reflection } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org