You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2023/02/14 19:19:42 UTC

[tomcat] branch 9.0.x updated: Rename to avoid Ant trying to run it as a test

This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/9.0.x by this push:
     new 0a6d57e92e Rename to avoid Ant trying to run it as a test
0a6d57e92e is described below

commit 0a6d57e92eb1abf542bf200c13a8c79c20e5f8a1
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 b655aed073..299471bca2 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-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org