Skip to content

Commit

Permalink
style: format code
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed Aug 2, 2023
1 parent ad69b83 commit 5e014f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ describe("destr", () => {

for (const testCase of testCases) {
expect(() => safeDestr(testCase.input)).toThrowError(
testCase.output || ""
testCase.output || "",
);
}
});
Expand All @@ -174,7 +174,7 @@ describe("destr", () => {

for (const testCase of testCases) {
expect(() => safeDestr(testCase.input)).toThrowError(
"[destr] Possible prototype pollution"
"[destr] Possible prototype pollution",
);
}
});
Expand Down

0 comments on commit 5e014f9

Please sign in to comment.