docs: Clarify ownership validation message.

This commit is contained in:
Ruben Verborgh
2021-08-04 16:54:42 +02:00
parent d3de5f3114
commit c1d8f0e841
3 changed files with 13 additions and 12 deletions

View File

@@ -24,7 +24,7 @@ describe('A TokenOwnershipValidator', (): void => {
const webId = 'http://alice.test.com/#me';
const token = 'randomlyGeneratedToken';
const tokenTriple = quad(namedNode(webId), SOLID.terms.oidcIssuerRegistrationToken, literal(token));
const tokenString = `${quadToString(tokenTriple)} .`;
const tokenString = `${quadToString(tokenTriple)}.`;
const converter = new RdfToQuadConverter();
let storage: ExpiringStorage<string, string>;
let validator: TokenOwnershipValidator;