From 36dbea717d0dfa74881c3d8c58be3a3645566132 Mon Sep 17 00:00:00 2001 From: Louis TOUSSAINT Date: Wed, 7 Aug 2024 23:40:28 +0200 Subject: [PATCH] Tests(DPxAI): Update test for Quest01 ex 03 --- js/tests/the-smooth-operator.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/js/tests/the-smooth-operator.json b/js/tests/the-smooth-operator.json index 32d36aac7..b0a98fcc8 100644 --- a/js/tests/the-smooth-operator.json +++ b/js/tests/the-smooth-operator.json @@ -1,26 +1,26 @@ [ { "description": "values of the variable are a result of the operations on the variable smooth ( 10 )", - "code": "let smooth = 10\n\n// Your code\n\nequal(lessSmooth, 9)\nequal(semiSmooth, 5)\nequal(plus11, 21)" + "code": "let name = 'blank'\nlet age = 0\nlet smooth = 10\n\n// Your code\n\nequal(lessSmooth, 9)\nequal(semiSmooth, 5)\nequal(plus11, 21)" }, { "description": "values of the variable are a result of the operations on the variable smooth ( 27 )", - "code": "let smooth = 27\n\n// Your code\nequal(lessSmooth, 26)\nequal(semiSmooth, 13.5)\nequal(plus11, 38)" + "code": "let name = 'blank'\nlet age = 0\nlet smooth = 27\n\n// Your code\nequal(lessSmooth, 26)\nequal(semiSmooth, 13.5)\nequal(plus11, 38)" }, { "description": "ultraSmooth should be the square of the value of smooth ( 10 )", - "code": "let smooth = 10\n\n// Your code\n\nequal(ultraSmooth, 100)" + "code": "let name = 'blank'\nlet age = 0\nlet smooth = 10\n\n// Your code\n\nequal(ultraSmooth, 100)" }, { "description": "ultraSmooth should be the square of the value of smooth ( 27 )", - "code": "let smooth = 27\n\n// Your code\n\nequal(ultraSmooth, 729)" + "code": "let name = 'blank'\nlet age = 0\nlet smooth = 27\n\n// Your code\n\nequal(ultraSmooth, 729)" }, { "description": "presentation value includes age and name .", - "code": "let name = 'Patrick'\nlet age = 48\n\n// Your code\nequal(presentation, `Hello, my name is Patrick and I'm 48 years old`)" + "code": "let name = 'Patrick'\nlet age = 48\nlet smooth = 0\n\n// Your code\nequal(presentation, `Hello, my name is Patrick and I'm 48 years old`)" }, { "description": "presentation value still includes age and name .", - "code": "let name = 'Jeremy'\nlet age = 27\n\n// Your code\nequal(presentation, `Hello, my name is Jeremy and I'm 27 years old`)" + "code": "let smooth = 0\nlet name = 'Jeremy'\nlet age = 27\n\n// Your code\nequal(presentation, `Hello, my name is Jeremy and I'm 27 years old`)" } -] +] \ No newline at end of file