You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by se...@apache.org on 2010/03/01 19:28:54 UTC

svn commit: r917635 - /httpcomponents/httpcore/trunk/httpcore/src/test/java/org/apache/http/util/TestEntityUtils.java

Author: sebb
Date: Mon Mar  1 18:28:53 2010
New Revision: 917635

URL: http://svn.apache.org/viewvc?rev=917635&view=rev
Log:
Tab police

Modified:
    httpcomponents/httpcore/trunk/httpcore/src/test/java/org/apache/http/util/TestEntityUtils.java

Modified: httpcomponents/httpcore/trunk/httpcore/src/test/java/org/apache/http/util/TestEntityUtils.java
URL: http://svn.apache.org/viewvc/httpcomponents/httpcore/trunk/httpcore/src/test/java/org/apache/http/util/TestEntityUtils.java?rev=917635&r1=917634&r2=917635&view=diff
==============================================================================
--- httpcomponents/httpcore/trunk/httpcore/src/test/java/org/apache/http/util/TestEntityUtils.java (original)
+++ httpcomponents/httpcore/trunk/httpcore/src/test/java/org/apache/http/util/TestEntityUtils.java Mon Mar  1 18:28:53 2010
@@ -142,7 +142,7 @@
     public void testGetContentMimeTypeWithCharset() throws Exception {
         BasicHttpEntity httpentity = new BasicHttpEntity();
         httpentity.setContentType(new BasicHeader("Content-Type", "text/plain; " +
-        		"whatever; charset = UTF-8"));
+                "whatever; charset = UTF-8"));
         assertEquals("text/plain", EntityUtils.getContentMimeType(httpentity));
     }