From 90c5402a90b69b91b7001e71424a67ee3c119f13 Mon Sep 17 00:00:00 2001 From: jonslucas Date: Tue, 10 Nov 2015 17:04:03 -0500 Subject: [PATCH] Fixed typo in Waypoint's assert msg. --- challenges/object-oriented-and-functional-programming.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/object-oriented-and-functional-programming.json b/challenges/object-oriented-and-functional-programming.json index 0e2c50c358..178ab1016d 100644 --- a/challenges/object-oriented-and-functional-programming.json +++ b/challenges/object-oriented-and-functional-programming.json @@ -169,7 +169,7 @@ "Then call your new constructor with three number arguments and assign it to myCar to see it in action." ], "tests":[ - "assert((function(){var testCar = new Car(3,1,2); return testCar.wheels === 3 && testCar.seats === 1 && testCar.engines === 2;})(), 'message: Calling new Car(3,1,2) should produce and object with a wheels property of 3, a seats property of 1, and an engines property of 2.');", + "assert((function(){var testCar = new Car(3,1,2); return testCar.wheels === 3 && testCar.seats === 1 && testCar.engines === 2;})(), 'message: Calling new Car(3,1,2) should produce an object with a wheels property of 3, a seats property of 1, and an engines property of 2.');", "assert(typeof myCar.wheels === 'number' && typeof myCar.seats === 'number' && typeof myCar.engines === 'number', 'message: myCar should have number values for the wheels, seats, and engines properties.');" ], "challengeSeed":[