Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
michielbdejong committed Sep 28, 2022
1 parent ac16051 commit 2ba5c81
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/surface/fetch-pod-root.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ describe("Alice's storage root", () => {
);
mock.fetch = async (url: string): Promise<any> => {
const headers = await getAuthHeaders(url, "GET", authFetcher);

// Work around https://github.com/solid-contrib/solid-auth-fetcher/pull/33
headers["Authorization"] = "dpop " + headers["Authorization"];
console.log(headers);
(headers as any).Accept = "text/turtle";
const result = await fetch(url, {
headers,
Expand Down

0 comments on commit 2ba5c81

Please sign in to comment.