diff --git a/koans/AboutExpects.js b/koans/AboutExpects.js index 4df1fd2b4..17f8a0d8a 100644 --- a/koans/AboutExpects.js +++ b/koans/AboutExpects.js @@ -24,7 +24,7 @@ describe("About Expects", function() { //Sometimes you need to be really exact about what you "type". it("should assert equality with ===", function () { - var expectedValue = FILL_ME_IN; + var expectedValue = '2'; var actualValue = (1 + 1).toString(); // toBe() will always use === to compare.