From bd02c989df1aa7b1bc00716e48226423f26623d8 Mon Sep 17 00:00:00 2001 From: Ryan-Chu Date: Wed, 19 Aug 2020 07:47:30 -0700 Subject: [PATCH] fix(curriculum): rename variable to avoid conflict (#39428) --- ...ments-to-avoid-external-dependence-in-a-function.english.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/functional-programming/pass-arguments-to-avoid-external-dependence-in-a-function.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/functional-programming/pass-arguments-to-avoid-external-dependence-in-a-function.english.md index ea82de1e8b..5316df37df 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/functional-programming/pass-arguments-to-avoid-external-dependence-in-a-function.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/functional-programming/pass-arguments-to-avoid-external-dependence-in-a-function.english.md @@ -32,7 +32,8 @@ tests: - text: Your incrementer function should take an argument. testString: assert(incrementer.length === 1); - text: Your incrementer function should return a value that is one larger than the fixedValue value. - testString: const newValue = incrementer(fixedValue); assert(newValue === 5); + testString: const __newValue = incrementer(fixedValue); assert(__newValue === 5); + ```