From da71afe504618988831c66063c82687ae481bee4 Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Wed, 3 Mar 2021 14:07:16 -0500 Subject: [PATCH] Renaming TheTest to UserPropertyImplTest for clarity --- .../cli/auth/ssh/{TheTest.java => UserPropertyImplTest.java} | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename src/test/java/org/jenkinsci/main/modules/cli/auth/ssh/{TheTest.java => UserPropertyImplTest.java} (98%) diff --git a/src/test/java/org/jenkinsci/main/modules/cli/auth/ssh/TheTest.java b/src/test/java/org/jenkinsci/main/modules/cli/auth/ssh/UserPropertyImplTest.java similarity index 98% rename from src/test/java/org/jenkinsci/main/modules/cli/auth/ssh/TheTest.java rename to src/test/java/org/jenkinsci/main/modules/cli/auth/ssh/UserPropertyImplTest.java index 1316fa8..8ece9f5 100644 --- a/src/test/java/org/jenkinsci/main/modules/cli/auth/ssh/TheTest.java +++ b/src/test/java/org/jenkinsci/main/modules/cli/auth/ssh/UserPropertyImplTest.java @@ -8,7 +8,7 @@ import org.jvnet.hudson.test.Issue; import org.jvnet.hudson.test.JenkinsRule; -public class TheTest { +public class UserPropertyImplTest { @Rule public JenkinsRule r = new JenkinsRule(); @@ -29,7 +29,6 @@ private void testRoundtrip(String publicKey) throws Exception { foo.addProperty(new UserPropertyImpl(publicKey)); r.configRoundtrip(foo); assertEquals(publicKey, foo.getProperty(UserPropertyImpl.class).authorizedKeys); - // integration testing w/ sshd-module is in hudson.cli.CLITest.strictHostKey in core } @Issue("JENKINS-16337")