aboutsummaryrefslogtreecommitdiffstats
path: root/jdisc_core/src/main/java/com/yahoo/jdisc/test/ServerProviderConformanceTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'jdisc_core/src/main/java/com/yahoo/jdisc/test/ServerProviderConformanceTest.java')
-rw-r--r--jdisc_core/src/main/java/com/yahoo/jdisc/test/ServerProviderConformanceTest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/jdisc_core/src/main/java/com/yahoo/jdisc/test/ServerProviderConformanceTest.java b/jdisc_core/src/main/java/com/yahoo/jdisc/test/ServerProviderConformanceTest.java
index e7039e85e5e..7e913456074 100644
--- a/jdisc_core/src/main/java/com/yahoo/jdisc/test/ServerProviderConformanceTest.java
+++ b/jdisc_core/src/main/java/com/yahoo/jdisc/test/ServerProviderConformanceTest.java
@@ -49,7 +49,7 @@ public abstract class ServerProviderConformanceTest {
private static final int NUM_RUNS_EACH_TEST = 10;
/**
- * <p>This interface declares the adapter between the general conformance test and an actual <tt>ServerProvider</tt>
+ * <p>This interface declares the adapter between the general conformance test and an actual <code>ServerProvider</code>
* implementation. Every test runs as follows:</p>
* <ol>
* <li>{@link #newConfigModule()} is called to bind server-specific configuration.</li>
@@ -59,7 +59,7 @@ public abstract class ServerProviderConformanceTest {
* <li>{@link #validateResponse(Object)} is called once per call to {@link #executeRequest(Object, boolean)}.</li>
* </ol>
*
- * @param <T> The <tt>ServerProvider</tt> under test.
+ * @param <T> The <code>ServerProvider</code> under test.
* @param <U> An object that represents a remote client that can connect to the server.
* @param <V> An object that holds the response generated by the client when executing a request.
*/
@@ -80,7 +80,7 @@ public abstract class ServerProviderConformanceTest {
/**
* <p>An instance of this exception is thrown within the conformance tests that imply that they will throw an
- * exception. If your <tt>ServerProvider</tt> is capable of exposing such information, then this class is what you
+ * exception. If your <code>ServerProvider</code> is capable of exposing such information, then this class is what you
* need to look for in the output.</p>
*/
public static class ConformanceException extends RuntimeException {