From: Leif Åstrand Date: Mon, 25 Jun 2012 10:40:25 +0000 (+0300) Subject: Avoid strange unicode literal in source file to make build server happy X-Git-Tag: 7.0.0.alpha3~69 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3081551251ca8690a77123344f2ac89a5f72728f;p=vaadin-framework.git Avoid strange unicode literal in source file to make build server happy --- diff --git a/tests/testbench/com/vaadin/tests/serialization/SerializerTest.java b/tests/testbench/com/vaadin/tests/serialization/SerializerTest.java index 0f7f5cca32..d0b672fbf9 100644 --- a/tests/testbench/com/vaadin/tests/serialization/SerializerTest.java +++ b/tests/testbench/com/vaadin/tests/serialization/SerializerTest.java @@ -40,7 +40,7 @@ public class SerializerTest extends AbstractTestRoot { rpc.sendBoolean(true, Boolean.FALSE, new boolean[] { true, true, false, true, false, false }); rpc.sendByte((byte) 5, Byte.valueOf((byte) -12), new byte[] { 3, 1, 2 }); - rpc.sendChar('∫', Character.valueOf('Ã¥'), "aBcD".toCharArray()); + rpc.sendChar('\u222b', Character.valueOf('Ã¥'), "aBcD".toCharArray()); rpc.sendInt(Integer.MAX_VALUE, Integer.valueOf(0), new int[] { 5, 7 }); rpc.sendLong(577431841358l, Long.valueOf(0), new long[] { -57841235865l, 57 });