summaryrefslogtreecommitdiff
path: root/test/files/jvm/serialization.check
diff options
context:
space:
mode:
authorstepancheg <stepancheg@epfl.ch>2008-06-06 19:28:49 +0000
committerstepancheg <stepancheg@epfl.ch>2008-06-06 19:28:49 +0000
commitba0e0cdbf84df51272739b9faf91b8a5961d1989 (patch)
tree0cf4ec902c26024df1452ce5bd34e2215b87d0af /test/files/jvm/serialization.check
parentc5de85e4329457b4d0b3019e0a8bb89c8132d7f1 (diff)
downloadscala-ba0e0cdbf84df51272739b9faf91b8a5961d1989.tar.gz
scala-ba0e0cdbf84df51272739b9faf91b8a5961d1989.tar.bz2
scala-ba0e0cdbf84df51272739b9faf91b8a5961d1989.zip
unify mutable and immutable stacks behavior (#957)
Diffstat (limited to 'test/files/jvm/serialization.check')
-rwxr-xr-xtest/files/jvm/serialization.check4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/jvm/serialization.check b/test/files/jvm/serialization.check
index 490be43d8a..f001f54c70 100755
--- a/test/files/jvm/serialization.check
+++ b/test/files/jvm/serialization.check
@@ -44,8 +44,8 @@ x = Queue(a,b,c)
y = Queue(a,b,c)
x equals y: true - y equals x: true
-x = Stack(c, b, a)
-y = Stack(c, b, a)
+x = Stack(a, b, c)
+y = Stack(a, b, c)
x equals y: true - y equals x: true
x = Map(42 -> FortyTwo)