summaryrefslogtreecommitdiff
path: root/test/files/jvm/serialization.check
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2007-10-26 17:29:12 +0000
committerMartin Odersky <odersky@gmail.com>2007-10-26 17:29:12 +0000
commitf5aa270473e0c335bd1a7a6b7f10f87b54a5d45e (patch)
treef215dcc233074a2047264c955eca26a0bf76cb74 /test/files/jvm/serialization.check
parente97eb8f50e2ae30c3a651b7f975282659a57e817 (diff)
downloadscala-f5aa270473e0c335bd1a7a6b7f10f87b54a5d45e.tar.gz
scala-f5aa270473e0c335bd1a7a6b7f10f87b54a5d45e.tar.bz2
scala-f5aa270473e0c335bd1a7a6b7f10f87b54a5d45e.zip
added/modified check files
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 7bd2a1524f..144e31603f 100644
--- a/test/files/jvm/serialization.check
+++ b/test/files/jvm/serialization.check
@@ -42,8 +42,8 @@ x = Map(42 -> FortyTwo)
y = Map(42 -> FortyTwo)
x equals y: true - y equals x: true
-x = TreeSet(0, 2)
-y = TreeSet(0, 2)
+x = Set(0, 2)
+y = Set(0, 2)
x equals y: true - y equals x: true
x = ArrayBuffer(one, two)
@@ -58,8 +58,8 @@ x = Set(0, 8, 9)
y = Set(0, 8, 9)
x equals y: true - y equals x: true
-x = HashSet(layers, buffers, title)
-y = HashSet(layers, buffers, title)
+x = Set(layers, buffers, title)
+y = Set(layers, buffers, title)
x equals y: true - y equals x: true
x = LinkedList(2, 3)