From 0df8fd394da7915b9c42366f69681ea4c786cbb0 Mon Sep 17 00:00:00 2001 From: letalumil Date: Mon, 16 Feb 2015 07:44:06 +0300 Subject: [PATCH] Remove duplicate initialization of bob variable in the 'Make a Person' bonfire --- seed_data/bonfires.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed_data/bonfires.json b/seed_data/bonfires.json index 956cb5c2db..3ca68f70c5 100644 --- a/seed_data/bonfires.json +++ b/seed_data/bonfires.json @@ -477,7 +477,7 @@ "Those methods are getFirstName(), getLastName(), getFullName(), setFirstName(), setLastName(), and setFullName().", "These methods must be the only available means for interacting with the object." ], - "challengeSeed": "var Person = function(firstAndLast) {\n return firstAndLast;\r\n};\n\nvar bob = new Person('Bob Ross');\n\nvar bob = new Person('Bob Ross');\nbob.getFullName();", + "challengeSeed": "var Person = function(firstAndLast) {\n return firstAndLast;\r\n};\n\nvar bob = new Person('Bob Ross');\nbob.getFullName();", "tests": [ "expect(Object.keys(bob).length).to.eql(6);", "expect(bob instanceof Person).to.be.true;",