File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
repository/Grease-Tests-Core.package/GRCountingStreamTest.class/instance Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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))
Original file line number Diff line number Diff 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))
You can’t perform that action at this time.
0 commit comments