From 3394a654bdccbf799c9c0768248deb022d492736 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hernando=20Guzm=C3=A1n?= Date: Wed, 27 Jan 2021 16:03:22 -0300 Subject: [PATCH] fix(learn): Correct syntax in the code example (#40811) Closes #40810 --- .../test-for-truthiness.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/06-quality-assurance/quality-assurance-and-testing-with-chai/test-for-truthiness.md b/curriculum/challenges/english/06-quality-assurance/quality-assurance-and-testing-with-chai/test-for-truthiness.md index b91d9430fb7..d06c838a5a2 100644 --- a/curriculum/challenges/english/06-quality-assurance/quality-assurance-and-testing-with-chai/test-for-truthiness.md +++ b/curriculum/challenges/english/06-quality-assurance/quality-assurance-and-testing-with-chai/test-for-truthiness.md @@ -14,7 +14,7 @@ As a reminder, this project is being built upon the following starter project on ```js assert.isTrue(true, 'this will pass with the boolean value true'); -assert.isTrue('true', 'this will NOT pass with the string value 'true'); +assert.isTrue('true', 'this will NOT pass with the string value "true"'); assert.isTrue(1, 'this will NOT pass with the number value 1'); ```