summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2012-08-27 14:53:36 +0300
committerLeif Åstrand <leif@vaadin.com>2012-08-27 14:53:36 +0300
commit0e95b201c996378794af6726d841b740418e4370 (patch)
tree370ba5b9b7f5db78ad81f37071a68ba8e89a381a /tests
parent327d3174be82f5523ad714bb6d3febe3aebc5123 (diff)
downloadvaadin-framework-0e95b201c996378794af6726d841b740418e4370.tar.gz
vaadin-framework-0e95b201c996378794af6726d841b740418e4370.zip
Change diff state to not depend on bean.equals semantics (#9406, #9026)
Diffstat (limited to 'tests')
-rw-r--r--tests/client-side/com/vaadin/terminal/gwt/server/JSONSerializerTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/client-side/com/vaadin/terminal/gwt/server/JSONSerializerTest.java b/tests/client-side/com/vaadin/terminal/gwt/server/JSONSerializerTest.java
index 7775b667a1..3738da3c5c 100644
--- a/tests/client-side/com/vaadin/terminal/gwt/server/JSONSerializerTest.java
+++ b/tests/client-side/com/vaadin/terminal/gwt/server/JSONSerializerTest.java
@@ -52,7 +52,7 @@ public class JSONSerializerTest extends TestCase {
stringToStateMap.put("String - state 2", s2);
Object encodedMap = JsonCodec.encode(stringToStateMap, null, mapType,
- null);
+ null).getEncodedValue();
ensureDecodedCorrectly(stringToStateMap, encodedMap, mapType);
}
@@ -69,7 +69,7 @@ public class JSONSerializerTest extends TestCase {
stateToStringMap.put(s2, "String - state 2");
Object encodedMap = JsonCodec.encode(stateToStringMap, null, mapType,
- null);
+ null).getEncodedValue();
ensureDecodedCorrectly(stateToStringMap, encodedMap, mapType);
}