From de8700664e8a62ce704574c888b6c489cf0c9294 Mon Sep 17 00:00:00 2001 From: Aubrey Snider Date: Tue, 1 Jun 2021 14:23:57 -0500 Subject: [PATCH] bugfix ex110 - isDelicious --- test/test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index f77f44c..a809651 100644 --- a/test/test.js +++ b/test/test.js @@ -594,7 +594,7 @@ function check110 () { }) checkForFunction(filename, module, 'manyTypes') - const diverseObject = { name: 'banana', count: 42, delicious: true } + const diverseObject = { name: 'banana', count: 42, isDelicious: true } it('"manyTypes" function implementation', function () { assert.deepStrictEqual(module.manyTypes(), diverseObject, 'manyTypes() should return the Object of multiple types.') }) @@ -607,7 +607,7 @@ function check110 () { checkForFunction(filename, module, 'addKey') it('"addKey" function implementation', function () { - const bestFruit = { name: 'banana', count: 42, delicious: true, color: 'yellow' } + const bestFruit = { name: 'banana', count: 42, isDelicious: true, color: 'yellow' } assert.deepStrictEqual(module.addKey(), bestFruit, 'addKey() should return bestFruit including a "color" property.') // TODO: make sure they added {color:"yellow"} to bestFruit })