Author: sebb
Date: Wed Sep 22 15:44:06 2010
New Revision: 1000052
URL: http://svn.apache.org/viewvc?rev=1000052&view=rev
Log:
Fix default Locale issues
Modified:
jakarta/jmeter/trunk/test/src/org/apache/jmeter/protocol/http/sampler/TestHTTPSamplersAgainstHttpMirrorServer.java
Modified:
jakarta/jmeter/trunk/test/src/org/apache/jmeter/protocol/http/sampler/TestHTTPSamplersAgainstHttpMirrorServer.java
URL:
http://svn.apache.org/viewvc/jakarta/jmeter/trunk/test/src/org/apache/jmeter/protocol/http/sampler/TestHTTPSamplersAgainstHttpMirrorServer.java?rev=1000052&r1=1000051&r2=1000052&view=diff
==============================================================================
---
jakarta/jmeter/trunk/test/src/org/apache/jmeter/protocol/http/sampler/TestHTTPSamplersAgainstHttpMirrorServer.java
(original)
+++
jakarta/jmeter/trunk/test/src/org/apache/jmeter/protocol/http/sampler/TestHTTPSamplersAgainstHttpMirrorServer.java
Wed Sep 22 15:44:06 2010
@@ -1131,9 +1131,9 @@ public class TestHTTPSamplersAgainstHttp
for(int i = 0; i < expected.length; i++) {
if(expected[i] != actual[i]) {
System.out.println(">>>>>>>>>>>>>>>>>>>>");
- System.out.println(new String(expected,0,i+1));
+ System.out.println(new String(expected,0,i+1,"UTF-8"));
System.out.println("====================");
- System.out.println(new String(actual,0,i+1));
+ System.out.println(new String(actual,0,i+1,"UTF-8"));
System.out.println("<<<<<<<<<<<<<<<<<<<<");
/*
// Useful to when debugging
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]