fix(curriculum): adjust test euler-227 (#44180)

Correct test to match test-text.
This commit is contained in:
Shaun Hamilton
2021-11-20 04:11:00 +00:00
committed by GitHub
parent 0e66904272
commit 0676506f00

View File

@ -27,7 +27,7 @@ In a game with 100 players, what is the expected number of turns the game lasts?
`theChase()` should return `3780.618622`.
```js
assert.strictEqual(theChase(), 0.618622);
assert.strictEqual(theChase(), 3780.618622);
```
# --seed--