Author: sebb
Date: Sat Jun 16 11:07:15 2012
New Revision: 1350908

URL: http://svn.apache.org/viewvc?rev=1350908&view=rev
Log:
Ensure starts on new line

Modified:
    
jmeter/trunk/test/src/org/apache/jmeter/protocol/http/sampler/TestHTTPSamplersAgainstHttpMirrorServer.java

Modified: 
jmeter/trunk/test/src/org/apache/jmeter/protocol/http/sampler/TestHTTPSamplersAgainstHttpMirrorServer.java
URL: 
http://svn.apache.org/viewvc/jmeter/trunk/test/src/org/apache/jmeter/protocol/http/sampler/TestHTTPSamplersAgainstHttpMirrorServer.java?rev=1350908&r1=1350907&r2=1350908&view=diff
==============================================================================
--- 
jmeter/trunk/test/src/org/apache/jmeter/protocol/http/sampler/TestHTTPSamplersAgainstHttpMirrorServer.java
 (original)
+++ 
jmeter/trunk/test/src/org/apache/jmeter/protocol/http/sampler/TestHTTPSamplersAgainstHttpMirrorServer.java
 Sat Jun 16 11:07:15 2012
@@ -1225,7 +1225,7 @@ public class TestHTTPSamplersAgainstHttp
     private void checkArraysHaveSameContent(byte[] expected, byte[] actual, 
String encoding) throws UnsupportedEncodingException {
         if(expected != null && actual != null) {
             if(expected.length != actual.length) {
-                System.out.println(">>>>>>>>>>>>>>>>>>>> expected:");
+                System.out.println("\n>>>>>>>>>>>>>>>>>>>> expected:");
                 System.out.println(new String(expected, encoding));
                 System.out.println("==================== actual:");
                 System.out.println(new String(actual, encoding));
@@ -1235,7 +1235,7 @@ public class TestHTTPSamplersAgainstHttp
             else {
                 for(int i = 0; i < expected.length; i++) {
                     if(expected[i] != actual[i]) {
-                        System.out.println(">>>>>>>>>>>>>>>>>>>> expected:");
+                        System.out.println("\n>>>>>>>>>>>>>>>>>>>> expected:");
                         System.out.println(new String(expected,0,i+1, 
encoding));
                         System.out.println("==================== actual:");
                         System.out.println(new String(actual,0,i+1, encoding));


Reply via email to