fix(curriculum): fix incomplete test (#42970)

This commit is contained in:
Luca
2021-07-22 22:01:04 +02:00
committed by GitHub
parent 368a6ebf7c
commit 970a1c1b56

View File

@ -58,7 +58,7 @@ There should be an edge between `Jill` and `Jenny`.
```js
assert(
undirectedAdjList.Jill.indexOf('Jenny') !== -1 &&
undirectedAdjList.Jill.indexOf('Jenny') !== -1
undirectedAdjList.Jenny.indexOf('Jill') !== -1
);
```