test(challenges): Corrected expected average value (#17562)

Modified 8.675 to 8.52 in three places for correct average value

BREAKING CHANGE: n/a

Closes #17561
This commit is contained in:
Matthew Smith
2018-06-13 14:15:24 +12:00
committed by mrugesh mohapatra
parent 8d57e1607f
commit ed5e02d7ae

View File

@ -1102,8 +1102,8 @@
"testString": "assert(code.match(/\\.reduce/g), 'Your code should use the <code>reduce</code> method.');"
},
{
"text": "The <code>averageRating</code> should equal 8.675.",
"testString": "assert(averageRating == 8.675, 'The <code>averageRating</code> should equal 8.675.');"
"text": "The <code>averageRating</code> should equal 8.52.",
"testString": "assert(averageRating == 8.52, 'The <code>averageRating</code> should equal 8.52.');"
},
{
"text": "Your code should not use a <code>for</code> loop.",
@ -1698,4 +1698,4 @@
}
}
]
}
}