From 10fd99f21c119b4b31fd7d316edc1cd1369b1fe9 Mon Sep 17 00:00:00 2001 From: Pablo Cuadros Date: Tue, 16 Jan 2018 18:44:43 +0000 Subject: [PATCH] Done. --- index.js | 2 +- tests.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/index.js b/index.js index 8151607..c0077ca 100644 --- a/index.js +++ b/index.js @@ -1,5 +1,5 @@ var name = "Joe" -var height = "74" +var height = 74 // Don't worry about this diff --git a/tests.js b/tests.js index 8da77d0..905fdad 100644 --- a/tests.js +++ b/tests.js @@ -1,6 +1,6 @@ var index = require("./index.js") -if (index.name === "Susan") { +if (index.name === "Joe") { console.log("The name is correct") } else { console.log("Expected: Susan, Received: "+index.name) @@ -8,7 +8,7 @@ if (index.name === "Susan") { -if (index.height === 70) { +if (index.height === 74) { console.log("The height is correct") } else { console.log("Expected: 70, Received: "+index.height)