aboutsummaryrefslogtreecommitdiffstats
path: root/Tests.st
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-11-20 00:48:52 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-11-20 00:49:45 +0100
commitfcb0c30b423e9723a8b78596378061e568b700d8 (patch)
treedc1e06018322a4c049f2a80b29d0d68fd4958653 /Tests.st
parent7e343bbfacf5fcab9c74b888731d4c9874323ea1 (diff)
MessageBuffer: Deprecate the MessageBuffer>>toByteArray
Diffstat (limited to 'Tests.st')
-rw-r--r--Tests.st1
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests.st b/Tests.st
index 340df36..3a3ff6a 100644
--- a/Tests.st
+++ b/Tests.st
@@ -80,5 +80,6 @@ TestCase subclass: MessageBufferTest [
self assert: msg_master size = 9.
self assert: msg_master toByteArray = #(1 2 3 4 5 6 7 8 9) asByteArray.
+ self assert: msg_master asByteArray = #(1 2 3 4 5 6 7 8 9) asByteArray.
]
]