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 b91d9430fb..d06c838a5a 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'); ```