Skip to content

Commit

Permalink
chore: fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
jeswr committed Nov 21, 2023
1 parent ec8b637 commit 1813b49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/common/getters.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -222,10 +222,10 @@ describe("getters", () => {
store.addQuad(
getConsent(mockedGConsentGrant),
gc.isProvidedTo,
namedNode("http://example.org/another/requestor")
)
namedNode("http://example.org/another/requestor"),
);

expect(() => getRequestor(store as any)).toThrowError(
expect(() => getRequestor(store as any)).toThrow(
"Expected exactly one result. Found 2.",
);
});
Expand Down

0 comments on commit 1813b49

Please sign in to comment.