From c2a511cb8666fa06acc5bff9f19a12782e01277a Mon Sep 17 00:00:00 2001 From: ahstro Date: Thu, 8 Oct 2015 17:32:06 +0200 Subject: [PATCH] Seek and Destory: Remove problematic argument Remove an empty string passed as an argument to `destroy()`. This argument, being the last, caused people to think their code worked correctly when it, in fact, worked correctly on all arguments except the last one. --- seed/challenges/basic-bonfires.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seed/challenges/basic-bonfires.json b/seed/challenges/basic-bonfires.json index afebb968ea..2c22329088 100644 --- a/seed/challenges/basic-bonfires.json +++ b/seed/challenges/basic-bonfires.json @@ -568,7 +568,7 @@ " return arr;", "}", "", - "destroyer([1, 2, 3, 1, 2, 3], 2, 3, \"\");" + "destroyer([1, 2, 3, 1, 2, 3], 2, 3);" ], "tests": [ "assert.deepEqual(destroyer([1, 2, 3, 1, 2, 3], 2, 3), [1, 1], 'message: destroyer([1, 2, 3, 1, 2, 3], 2, 3) should return [1, 1].');",