fix: Align webId capitalization.

This commit is contained in:
Ruben Verborgh
2020-12-01 23:35:11 +01:00
parent 357546e90f
commit 74415cf49b
8 changed files with 23 additions and 23 deletions

View File

@@ -83,7 +83,7 @@ describe('A DPoPWebIdExtractor', (): void => {
it('returns the extracted WebID.', async(): Promise<void> => {
const result = webIdExtractor.handleSafe(request);
await expect(result).resolves.toEqual({ webID: 'http://alice.example/card#me' });
await expect(result).resolves.toEqual({ webId: 'http://alice.example/card#me' });
});
});