summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Godfrey <rgodfrey@apache.org>2014-03-24 15:35:10 +0000
committerRobert Godfrey <rgodfrey@apache.org>2014-03-24 15:35:10 +0000
commit4eb25f6f4ed6fe03bd7ec86dfbb3f4a4e372ed97 (patch)
treef3ff17287064f3537743250d59fe8cdfe125143d
parentbfd908992e09c065e2334a12978d2ffe6a6991a2 (diff)
downloadqpid-python-4eb25f6f4ed6fe03bd7ec86dfbb3f4a4e372ed97.tar.gz
QPID-5639 : Remove Unicode from source file
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1580885 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/java/broker-core/src/test/java/org/apache/qpid/server/security/auth/manager/ScramSHA1AuthenticationManagerTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/broker-core/src/test/java/org/apache/qpid/server/security/auth/manager/ScramSHA1AuthenticationManagerTest.java b/qpid/java/broker-core/src/test/java/org/apache/qpid/server/security/auth/manager/ScramSHA1AuthenticationManagerTest.java
index 78b4b22ff3..033e0afde8 100644
--- a/qpid/java/broker-core/src/test/java/org/apache/qpid/server/security/auth/manager/ScramSHA1AuthenticationManagerTest.java
+++ b/qpid/java/broker-core/src/test/java/org/apache/qpid/server/security/auth/manager/ScramSHA1AuthenticationManagerTest.java
@@ -191,7 +191,7 @@ public class ScramSHA1AuthenticationManagerTest extends QpidTestCase
{
try
{
- _authManager.createUser(getTestName()+"£", "password", Collections.<String, String>emptyMap());
+ _authManager.createUser(getTestName()+Character.toString((char)0xa3), "password", Collections.<String, String>emptyMap());
fail("Expected exception when attempting to create a user with a non ascii name");
}
catch(IllegalArgumentException e)