diff --git a/koans/AboutExpects.js b/koans/AboutExpects.js index 7d1a827cb..4ae08cef4 100644 --- a/koans/AboutExpects.js +++ b/koans/AboutExpects.js @@ -3,8 +3,8 @@ describe('About Expects', function() { // We shall contemplate truth by testing reality, via spec expectations. it('should expect true', function() { - // Your journey begins here: Replace the word false with true - expect(false).toBeTruthy(); + // Your journey begins here: Replace the word false with true + expect(true).toBeTruthy(); }); // To understand reality, we must compare our expectations against reality.