Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
fix(test): fix warning about missing key
Browse files Browse the repository at this point in the history
  • Loading branch information
jackcmeyer committed Feb 19, 2020
1 parent 0f061d2 commit 55b5fbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/__tests__/patients/list/Patients.test.tsx
Expand Up @@ -16,7 +16,7 @@ const middlewares = [thunk]
const mockStore = configureStore(middlewares)

describe('Patients', () => {
const patients = [{ fullName: 'test test', friendlyId: 'P12345' }]
const patients = [{ id: '123', fullName: 'test test', friendlyId: 'P12345' }]
const mockedPatientRepository = mocked(PatientRepository, true)

const setup = (isLoading?: boolean) => {
Expand Down

0 comments on commit 55b5fbd

Please sign in to comment.