Skip to content

Commit eef545f

Browse files
authored
Merge pull request #3707 from myverdict/patch-1
Update part6b.md
2 parents 467ccb7 + 81305f3 commit eef545f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/6/en/part6b.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ describe('noteReducer', () => {
582582
const newState = noteReducer(state, action)
583583

584584
expect(newState).toHaveLength(1)
585-
expect(newState.map(s => s.content)).toContainEqual(action.payload)
585+
expect(newState.map(s => s.content)).toContainEqual(action.payload) // highlight-line
586586
})
587587

588588
test('returns new state with action notes/toggleImportanceOf', () => {
@@ -600,7 +600,7 @@ describe('noteReducer', () => {
600600

601601
const action = {
602602
type: 'notes/toggleImportanceOf', // highlight-line
603-
payload: 2
603+
payload: 2 // highlight-line
604604
}
605605

606606
deepFreeze(state)

0 commit comments

Comments
 (0)