Skip to content

Commit

Permalink
fix: test improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
schmanu committed Oct 31, 2023
1 parent fa16d3e commit c2d9c45
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/store/__tests__/addressBookSlice.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,7 @@ describe('addressBookSlice', () => {
name: '',
}),
)
expect(state).toEqual({
'1': { '0x0': 'Alice', '0x1': 'Bob' },
'4': { '0x0': 'Charlie', '0x1': 'Dave' },
})
expect(state).toEqual(initialState)
})

it('should edit an entry in the address book', () => {
Expand Down

0 comments on commit c2d9c45

Please sign in to comment.