X Tutup
Skip to content

Commit 32b50e5

Browse files
author
Johan Brichau
committed
fix more codec tests for cross-platform testing
1 parent 64046ba commit 32b50e5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/testNextPut.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ testNextPut
33
countingStream nextPut: (Character codePoint: 16rE4).
44
self assert: countingStream size = 2.
55
self assert: countingStream count = 1.
6-
self assert: countingStream contents = (String with: (Character codePoint: 16rC3) with: (Character codePoint: 16rA4)) asByteArray
6+
self assert: countingStream contents asString = (String with: (Character codePoint: 16rC3) with: (Character codePoint: 16rA4))

repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance/testNextPutAll.st

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ testNextPutAll
33
countingStream nextPutAll: (String with: (Character codePoint: 16rE4)).
44
self assert: countingStream size = 2.
55
self assert: countingStream count = 1.
6-
self assert: countingStream contents = (String with: (Character codePoint: 16rC3) with: (Character codePoint: 16rA4)) asByteArray
6+
self assert: countingStream contents asString = (String with: (Character codePoint: 16rC3) with: (Character codePoint: 16rA4))

0 commit comments

Comments
 (0)
X Tutup