From 8941f8445c28b9e311108c120f2be99c88810aa4 Mon Sep 17 00:00:00 2001 From: TheBest101 Date: Sat, 6 May 2017 07:45:22 -0400 Subject: [PATCH] changing wording --- .../basic-javascript.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/seed/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json b/seed/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json index 40fc0aac51c..c74cfece16c 100755 --- a/seed/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json +++ b/seed/challenges/02-javascript-algorithms-and-data-structures/basic-javascript.json @@ -256,8 +256,8 @@ "var a = 5;\nvar b = 10;\nvar c = \"I am a\";\na = a + 1;\nb = b + 5;\nc = c + \" String!\";" ], "tests": [ - "assert(typeof a === 'number' && a === 6, 'message: a should be defined and have a value of 6');", - "assert(typeof b === 'number' && b === 15, 'message: b should be defined and have a value of 15');", + "assert(typeof a === 'number' && a === 6, 'message: a should be defined and evaluated to have the value of 6');", + "assert(typeof b === 'number' && b === 15, 'message: b should be defined and evaluated to have the value of 15');", "assert(!/undefined/.test(c) && c === \"I am a String!\", 'message: c should not contain undefined and should have a value of \"I am a String!\"');", "assert(/a = a \\+ 1;/.test(code) && /b = b \\+ 5;/.test(code) && /c = c \\+ \" String!\";/.test(code), 'message: Do not change code below the line');" ],