fix(curriculum): test typos (#39984)

This commit is contained in:
Oliver Eyton-Williams
2020-10-15 20:49:57 +02:00
committed by GitHub
parent f6fcb26a9d
commit 35c4020f4d
4 changed files with 6 additions and 6 deletions

View File

@ -37,7 +37,7 @@ Any cell size is allowed, EOF (<u>E</u>nd-<u>O</u>-<u>F</u>ile) support is optio
tests:
- text: <code>brain(bye)</code> should return a string
testString: assert(typeof brain(bye) === 'string');
- text: <code>brain("++++++[>++++++++++<-]>+++++.")</code should return "A"
- text: <code>brain("++++++[>++++++++++<-]>+++++.")</code> should return "A"
testString: assert.equal(brain("++++++[>++++++++++<-]>+++++."),"A");
- text: <code>brain(bye)</code> should return <code>Goodbye, World!\\r\\n</code>
testString: assert.equal(brain(bye), 'Goodbye, World!\r\n');