Skip to content

Commit

Permalink
Clean up comments
Browse files Browse the repository at this point in the history
  • Loading branch information
acoburn committed Aug 19, 2024
1 parent 4276e8e commit 4509588
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/resource/file.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ describe("getFile", () => {

expect(error).toBeInstanceOf(FetchError);

// Extract the problem details for a first time
// Verify the problem details data
expect(error.problemDetails.type).toBe(DEFAULT_TYPE);
expect(error.problemDetails.title).toBe("I'm a teapot!");
expect(error.problemDetails.status).toBe(418);
Expand Down Expand Up @@ -303,7 +303,7 @@ describe("getFile", () => {

expect(error).toBeInstanceOf(FetchError);

// Extract the problem details for a first time
// Verify the problem details data
expect(error.problemDetails.type).toEqual(problem.type);
expect(error.problemDetails.title).toBe(problem.title);
expect(error.problemDetails.status).toBe(problem.status);
Expand Down Expand Up @@ -342,7 +342,7 @@ describe("getFile", () => {

expect(error).toBeInstanceOf(FetchError);

// Extract the problem details for a first time
// Verify the problem details data
expect(error.problemDetails.type).toEqual(
new URL("https://arbitrary.pod/errors/NotFound"),
);
Expand Down

0 comments on commit 4509588

Please sign in to comment.