Removed assumption for test run: now NPN does not need an agent anymore.

This commit is contained in:
Simone Bordet 2012-02-22 21:12:43 +01:00
parent 81b4b1cbcd
commit 111ae7fa1a
1 changed files with 0 additions and 9 deletions

View File

@ -20,7 +20,6 @@ import org.eclipse.jetty.npn.NextProtoNego;
import org.eclipse.jetty.spdy.api.server.ServerSessionFrameListener;
import org.eclipse.jetty.util.ssl.SslContextFactory;
import org.eclipse.jetty.util.thread.ThreadPool;
import org.junit.Assume;
import org.junit.Before;
public class SSLSynReplyTest extends SynReplyTest
@ -42,14 +41,6 @@ public class SSLSynReplyTest extends SynReplyTest
@Before
public void init()
{
try
{
getClass().getClassLoader().loadClass("org.eclipse.jetty.npn.Agent");
}
catch (ClassNotFoundException x)
{
Assume.assumeNoException(x);
}
NextProtoNego.debug = true;
}
}