fix: correct function call in test description (#40944)

This commit is contained in:
gikf
2021-02-20 07:33:33 +01:00
committed by GitHub
parent be655b4742
commit a91444d3d4

View File

@ -82,7 +82,7 @@ assert.deepEqual(emirps([7700, 8000], true), [
]); ]);
``` ```
`emirps([7700,8000],true)` should return `11` `emirps([7700,8000],false)` should return `11`
```js ```js
assert.deepEqual(emirps([7700, 8000], false), 11); assert.deepEqual(emirps([7700, 8000], false), 11);