From 52d07c3ccf2efcb2e2d7b1e277aab29a6f83a546 Mon Sep 17 00:00:00 2001 From: Joseph Levy Date: Mon, 12 Oct 2020 18:22:43 +0300 Subject: [PATCH] assaigning expectValue = '2' --- koans/AboutExpects.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.