Skip to content

Commit

Permalink
change Jane to Susan in tests
Browse files Browse the repository at this point in the history
fixing issue learn-co-students#2
  • Loading branch information
jmburges authored Jul 11, 2017
1 parent 6f8a13f commit 5f15de7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
var index = require("./index.js")

if (index.name === "Jane") {
if (index.name === "Susan") {
console.log("The name is correct")
} else {
console.log("Expected: Jane, Received: "+index.name)
console.log("Expected: Susan, Received: "+index.name)
}


Expand Down

0 comments on commit 5f15de7

Please sign in to comment.