Skip to content

Commit 1bbffb3

Browse files
committed
fix: linter
1 parent 0116949 commit 1bbffb3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/localStorage.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ describe("parseJsonContent", () => {
8686
});
8787

8888
it("should throw an error for invalid JSON", () => {
89-
// Temporarily spy on console.error and replace it with a function that does nothing.
89+
// Temporarily spy on console.error and replace it with a function that does nothing.
9090
const consoleErrorSpy = jest.spyOn(console, "error").mockImplementation(() => {});
9191
const invalidJson = "{invalid}";
9292
expect(() => parseJsonContent(invalidJson)).toThrow("Invalid JSON content");

0 commit comments

Comments
 (0)