summaryrefslogtreecommitdiff
path: root/test/files/jvm/serialization.check
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2007-01-17 11:19:33 +0000
committermihaylov <mihaylov@epfl.ch>2007-01-17 11:19:33 +0000
commit4c0d1ef392c1cb0f535b97fae6b5ebfd56be3218 (patch)
tree01adfe1efd4baf9c51a8168d9b661c6a7c0c4c9d /test/files/jvm/serialization.check
parentcf5b53633eb1f99c340feb18bcc83b8af2e8065d (diff)
downloadscala-4c0d1ef392c1cb0f535b97fae6b5ebfd56be3218.tar.gz
scala-4c0d1ef392c1cb0f535b97fae6b5ebfd56be3218.tar.bz2
scala-4c0d1ef392c1cb0f535b97fae6b5ebfd56be3218.zip
Fixed test/files/jvm/serialization.check due to...
Fixed test/files/jvm/serialization.check due to change in collection.Set.toString()
Diffstat (limited to 'test/files/jvm/serialization.check')
-rw-r--r--test/files/jvm/serialization.check20
1 files changed, 10 insertions, 10 deletions
diff --git a/test/files/jvm/serialization.check b/test/files/jvm/serialization.check
index 655015e473..6072eecc59 100644
--- a/test/files/jvm/serialization.check
+++ b/test/files/jvm/serialization.check
@@ -22,12 +22,12 @@ x = Map(title -> 3, layers -> 2, buffers -> 20)
y = Map(title -> 3, layers -> 2, buffers -> 20)
x equals y: true - y equals x: true
-x = {2, 3}
-y = {2, 3}
+x = Set(2, 3)
+y = Set(2, 3)
x equals y: true - y equals x: true
-x = {5, 3}
-y = {5, 3}
+x = Set(5, 3)
+y = Set(5, 3)
x equals y: true - y equals x: true
x = Queue(a,b,c)
@@ -42,20 +42,20 @@ x = Map(42 -> FortyTwo)
y = Map(42 -> FortyTwo)
x equals y: true - y equals x: true
-x = {0, 2}
-y = {0, 2}
+x = Set(0, 2)
+y = Set(0, 2)
x equals y: true - y equals x: true
x = Map(title -> 3, buffers -> 20, layers -> 2)
y = Map(title -> 3, buffers -> 20, layers -> 2)
x equals y: true - y equals x: true
-x = {0, 8, 9}
-y = {0, 8, 9}
+x = Set(0, 8, 9)
+y = Set(0, 8, 9)
x equals y: true - y equals x: true
-x = {title, buffers, layers}
-y = {title, buffers, layers}
+x = Set(title, buffers, layers)
+y = Set(title, buffers, layers)
x equals y: true - y equals x: true
x = LinkedList(2,3)