Merge pull request #2542 from spotify/fix-identity-type

Fix identity typo
This commit is contained in:
Patrik Oldsberg
2020-09-21 18:45:42 +02:00
committed by GitHub
@@ -58,7 +58,7 @@ describe('Catalog Filter', () => {
] as Entity[]),
};
const indentityApi: Partial<IdentityApi> = {
const identityApi: Partial<IdentityApi> = {
getUserId: () => 'tools@example.com',
};
@@ -68,7 +68,7 @@ describe('Catalog Filter', () => {
<ApiProvider
apis={ApiRegistry.from([
[catalogApiRef, catalogApi],
[identityApiRef, indentityApi],
[identityApiRef, identityApi],
[storageApiRef, MockStorageApi.create()],
])}
>