Skip to content

Commit

Permalink
Use code for ASCII code
Browse files Browse the repository at this point in the history
  • Loading branch information
rfc2822 committed Oct 15, 2024
1 parent 033c012 commit 5576937
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class ContactTest {
members = mutableSetOf("1", "2", "3"),
emails = LinkedList(listOf(LabeledProperty(Email("[email protected]")))),
note = "Some Text\n".repeat(1000),
photo = ByteArray(10*1024*1024) { 'A'.toByte() }, // 10 MB
photo = ByteArray(10*1024*1024) { 'A'.code.toByte() }, // 10 MB
unknownProperties = "UNKNOWN:Property\n".repeat(1000)
)
val result = c.toString()
Expand Down

0 comments on commit 5576937

Please sign in to comment.