summaryrefslogtreecommitdiff
path: root/test/files/jvm/serialization.check
diff options
context:
space:
mode:
authorAleksandar Prokopec <axel22@gmail.com>2012-02-15 20:50:25 +0100
committerAleksandar Prokopec <axel22@gmail.com>2012-02-15 20:50:25 +0100
commitf0f5ad3c81431eba27d590f80872306f60d01505 (patch)
tree4288db5cb7331878cdfb3a956a047de9c6ed1fcd /test/files/jvm/serialization.check
parent14f3135368b923a1f5d14d1b4f7424db22fd7f79 (diff)
downloadscala-f0f5ad3c81431eba27d590f80872306f60d01505.tar.gz
scala-f0f5ad3c81431eba27d590f80872306f60d01505.tar.bz2
scala-f0f5ad3c81431eba27d590f80872306f60d01505.zip
Apply the fix for si-5293 to hash maps.
This fix was previously only applied to hash sets.
Diffstat (limited to 'test/files/jvm/serialization.check')
-rw-r--r--test/files/jvm/serialization.check8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/files/jvm/serialization.check b/test/files/jvm/serialization.check
index 67b77639a2..81b68f0f5d 100644
--- a/test/files/jvm/serialization.check
+++ b/test/files/jvm/serialization.check
@@ -156,8 +156,8 @@ x = BitSet(0, 8, 9)
y = BitSet(0, 8, 9)
x equals y: true, y equals x: true
-x = Map(C -> 3, B -> 2, A -> 1)
-y = Map(C -> 3, A -> 1, B -> 2)
+x = Map(A -> 1, C -> 3, B -> 2)
+y = Map(A -> 1, C -> 3, B -> 2)
x equals y: true, y equals x: true
x = Set(buffers, title, layers)
@@ -283,8 +283,8 @@ x = ParArray(abc, def, etc)
y = ParArray(abc, def, etc)
x equals y: true, y equals x: true
-x = ParHashMap(1 -> 2, 2 -> 4)
-y = ParHashMap(1 -> 2, 2 -> 4)
+x = ParHashMap(2 -> 4, 1 -> 2)
+y = ParHashMap(2 -> 4, 1 -> 2)
x equals y: true, y equals x: true
x = ParCtrie(1 -> 2, 2 -> 4)