diff --git a/seed/challenges/02-javascript-algorithms-and-data-structures/object-oriented-programming.json b/seed/challenges/02-javascript-algorithms-and-data-structures/object-oriented-programming.json index ef9a16e36b0b08..a551f3e4434538 100644 --- a/seed/challenges/02-javascript-algorithms-and-data-structures/object-oriented-programming.json +++ b/seed/challenges/02-javascript-algorithms-and-data-structures/object-oriented-programming.json @@ -942,7 +942,7 @@ "" ], "tests": [ - "assert(typeof glideMixin === \"function\", 'message: Your code should declare a glideMixin variable that is a function.');", + "assert(typeof glideMixin === \"function\" && glideMixin.name === \"glideMixin\", 'message: Your code should declare a glideMixin variable that is a function.');", "assert(typeof bird.glide === \"function\", 'message: Your code should use the glideMixin on the bird object to give it the glide method.');", "assert(typeof boat.glide === \"function\", 'message: Your code should use the glideMixin on the boat object to give it the glide method.');" ],