Skip to content

Commit

Permalink
test changes to handle windows systems better
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@591040 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
steveloughran committed Nov 1, 2007
1 parent 97195d6 commit 51d7118
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/junit/org/apache/tools/ant/launch/LocatorTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,9 @@ public void testHttpURI() throws Exception {


public void testInternationalURI() throws Exception {
String result=assertResolves("L\\u00f6wenbrau.aus.M\\u00fcnchen");
String result=assertResolves("L\u00f6wenbrau.aus.M\u00fcnchen");
char umlauted = result.charAt(1);
assertEquals("expected 0xf6 (\\u00f6), but got "+Integer.toHexString(umlauted)+" '"+umlauted+"'",
assertEquals("expected 0xf6 (\u00f6), but got "+Integer.toHexString(umlauted)+" '"+umlauted+"'",
0xf6, umlauted);
}

Expand Down

0 comments on commit 51d7118

Please sign in to comment.