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)