Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 124E5200BD4 for ; Thu, 1 Dec 2016 09:48:33 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 10D26160B0F; Thu, 1 Dec 2016 08:48:33 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 51B10160B0B for ; Thu, 1 Dec 2016 09:48:32 +0100 (CET) Received: (qmail 26748 invoked by uid 500); 1 Dec 2016 08:48:31 -0000 Mailing-List: contact commits-help@myfaces.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "MyFaces Development" Delivered-To: mailing list commits@myfaces.apache.org Received: (qmail 26737 invoked by uid 99); 1 Dec 2016 08:48:31 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Dec 2016 08:48:31 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 16E69180554 for ; Thu, 1 Dec 2016 08:48:31 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -1.999 X-Spam-Level: X-Spam-Status: No, score=-1.999 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-2.999] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id skasWqCBBBP0 for ; Thu, 1 Dec 2016 08:48:30 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id EFAB35F1F0 for ; Thu, 1 Dec 2016 08:48:29 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 3EAC2E0115 for ; Thu, 1 Dec 2016 08:48:29 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id E03CF3A0257 for ; Thu, 1 Dec 2016 08:48:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1772158 - /myfaces/tobago/trunk/tobago-core/src/test/java/org/apache/myfaces/tobago/webapp/TobagoResponseWriterUnitTest.java Date: Thu, 01 Dec 2016 08:48:28 -0000 To: commits@myfaces.apache.org From: lofwyr@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20161201084828.E03CF3A0257@svn01-us-west.apache.org> archived-at: Thu, 01 Dec 2016 08:48:33 -0000 Author: lofwyr Date: Thu Dec 1 08:48:28 2016 New Revision: 1772158 URL: http://svn.apache.org/viewvc?rev=1772158&view=rev Log: TOBAGO-1368: The standard theme will use Bootstrap * move the rendering of the HTML tag from the ResponseWriter to the PageRenderer, to have the possibility to add CSS to the HTML Tag. In general this is not needed, but for some special e.g. height: 100% Modified: myfaces/tobago/trunk/tobago-core/src/test/java/org/apache/myfaces/tobago/webapp/TobagoResponseWriterUnitTest.java Modified: myfaces/tobago/trunk/tobago-core/src/test/java/org/apache/myfaces/tobago/webapp/TobagoResponseWriterUnitTest.java URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-core/src/test/java/org/apache/myfaces/tobago/webapp/TobagoResponseWriterUnitTest.java?rev=1772158&r1=1772157&r2=1772158&view=diff ============================================================================== --- myfaces/tobago/trunk/tobago-core/src/test/java/org/apache/myfaces/tobago/webapp/TobagoResponseWriterUnitTest.java (original) +++ myfaces/tobago/trunk/tobago-core/src/test/java/org/apache/myfaces/tobago/webapp/TobagoResponseWriterUnitTest.java Thu Dec 1 08:48:28 2016 @@ -47,7 +47,7 @@ public class TobagoResponseWriterUnitTes public void testDocument() throws IOException { writer.startDocument(); writer.endDocument(); - Assert.assertEquals("content expected","\n", stringWriter.toString()); + Assert.assertEquals("content expected", "\n", stringWriter.toString()); } @Test