From dev-return-203185-archive-asf-public=cust-asf.ponee.io@tomcat.apache.org Sat Nov 9 10:58:18 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 8EBA81804BB for ; Sat, 9 Nov 2019 11:58:18 +0100 (CET) Received: (qmail 14064 invoked by uid 500); 9 Nov 2019 10:58:17 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 14050 invoked by uid 99); 9 Nov 2019 10:58:17 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 Nov 2019 10:58:17 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id E9979851DB; Sat, 9 Nov 2019 10:58:16 +0000 (UTC) Date: Sat, 09 Nov 2019 10:58:16 +0000 To: "dev@tomcat.apache.org" Subject: [tomcat] branch master updated: Fix test fallout of BZ 63905 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <157329709669.8722.16780208579253858893@gitbox.apache.org> From: michaelo@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: tomcat X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 69602cb1ef0dc3aa2188a1b3be9fa3a1440cd1b1 X-Git-Newrev: ccd6518024ab4f8c0add42eb2b20941a6b237f5d X-Git-Rev: ccd6518024ab4f8c0add42eb2b20941a6b237f5d X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. michaelo pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomcat.git The following commit(s) were added to refs/heads/master by this push: new ccd6518 Fix test fallout of BZ 63905 ccd6518 is described below commit ccd6518024ab4f8c0add42eb2b20941a6b237f5d Author: Michael Osipov AuthorDate: Sat Nov 9 11:35:22 2019 +0100 Fix test fallout of BZ 63905 --- test/org/apache/coyote/http2/TestHttp2InitialConnection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/org/apache/coyote/http2/TestHttp2InitialConnection.java b/test/org/apache/coyote/http2/TestHttp2InitialConnection.java index 2157eae..a362a19 100644 --- a/test/org/apache/coyote/http2/TestHttp2InitialConnection.java +++ b/test/org/apache/coyote/http2/TestHttp2InitialConnection.java @@ -127,7 +127,7 @@ public class TestHttp2InitialConnection extends Http2TestBase { int statusHeaderLength = sm .getString("errorReportValve.statusHeader", "", "") .getBytes(StandardCharsets.UTF_8).length; - int len = 1073 + serverInfoLength + statusHeaderLength * 2; + int len = 708 + serverInfoLength + statusHeaderLength * 2; String contentLength = String.valueOf(len); return getResponseBodyFrameTrace(streamId, testData.getExpectedStatus(), "text/html;charset=utf-8", --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org