diff --git a/js/tests/glance-on-power.json b/js/tests/glance-on-power.json index 9ec3d16f1..c4797bb06 100644 --- a/js/tests/glance-on-power.json +++ b/js/tests/glance-on-power.json @@ -12,7 +12,7 @@ "code": "const args = saveArguments(console, 'log')\n\n// Your code\n\nconst typeOfLoggedValues = args.flat().map((v) => typeof v)\nif (!typeOfLoggedValues.includes('string')) {\n throw Error('you must log a string')\n}" }, { - "description": "Log the string Hello There ! in the console", - "code": "const args = saveArguments(console, 'log')\n\n// Your code\n\nconst loggedValues = args.flat().join(' ')\nif (!loggedValues.includes('Hello There !')) {\n throw Error('you must log the text Hello There !')\n}" + "description": "Log the string Hello There! in the console", + "code": "const args = saveArguments(console, 'log')\n\n// Your code\n\nconst loggedValues = args.flat().join(' ')\nif (!loggedValues.includes('Hello There!')) {\n throw Error('you must log the text Hello There!')\n}" } ]