public void testConnectionTokens4() throws Exception {
// Use HTTP 1.1
HttpResponse response =
createResponse(HttpVersion.HTTP_1_1, 200, "OK", true, -1);
response.addHeader("Connection", "yadda, close, dumdy");
response.addHeader("Proxy-Connection", "keep-alive");
// Connection takes precedence over Proxy-Connection
assertFalse(reuseStrategy.keepAlive(response, context));
}