Skip to content

Commit 9b611d8

Browse files
authored
Merge pull request #2834 from MarcGuay/patch-26
Update part4b.md
2 parents 5089f89 + 7664655 commit 9b611d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/4/en/part4b.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,13 +347,13 @@ The database is cleared out at the beginning, and after that, we save the two no
347347
Let's also make the following changes to the last two tests:
348348

349349
```js
350-
test('all notes are returned', async () => {
350+
test('all notes are returned', async () => { // highlight-line
351351
const response = await api.get('/api/notes')
352352

353353
expect(response.body).toHaveLength(initialNotes.length) // highlight-line
354354
})
355355

356-
test('a specific note is within the returned notes', async () => {
356+
test('a specific note is within the returned notes', async () => { // highlight-line
357357
const response = await api.get('/api/notes')
358358

359359
// highlight-start

0 commit comments

Comments
 (0)