The text says:
We can turn our ”NoPanic” code example into the test method itself:
testShout
self assert: ('No panic' shout = 'NO PANIC!')
However, the figure shows:
testShout
self assert: 'No panic' shout = 'NO PANIC!'
The text also is confusing, or incomplete. It states that the Code Checker will inform you that the message is not implemented. It actually gives you two errors. The first is
Use assert: equals: instead of assert: and =
So for the reader, should they accept this change?