git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1537 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Greg Wilkins 2010-04-21 11:03:05 +00:00
parent 20d7ba4b9d
commit b72ec70899
1 changed files with 17 additions and 0 deletions

View File

@ -14,6 +14,8 @@
package org.eclipse.jetty.client; package org.eclipse.jetty.client;
import org.eclipse.jetty.util.log.Log;
/** /**
* @version $Revision$ $Date$ * @version $Revision$ $Date$
*/ */
@ -42,4 +44,19 @@ public class BlockingHttpExchangeCancelTest extends AbstractHttpExchangeCancelTe
{ {
return httpClient; return httpClient;
} }
/* ------------------------------------------------------------ */
/**
* @see org.eclipse.jetty.client.AbstractHttpExchangeCancelTest#testHttpExchangeOnExpire()
*/
@Override
public void testHttpExchangeOnExpire() throws Exception
{
boolean enabled=Log.getLog().isDebugEnabled();
Log.getLog().setDebugEnabled(true);
super.testHttpExchangeOnExpire();
Log.getLog().setDebugEnabled(enabled);
}
} }