Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Shubham Tiwari committed Mar 28, 2022
1 parent 0137340 commit c315286
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __tests__/save.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ test("save with no primary key in state outputs warning", async () => {
expect(failedMock).toHaveBeenCalledTimes(0);
});

test("save without AC available should no=op", async () => {
test("save without AC available should no-op", async () => {
jest.spyOn(actionUtils, "isCacheFeatureAvailable").mockImplementation(
() => false
);
Expand All @@ -116,7 +116,7 @@ test("save without AC available should no=op", async () => {
expect(saveCacheMock).toHaveBeenCalledTimes(0);
});

test("save on ghes without AC available should no=op", async () => {
test("save on ghes without AC available should no-op", async () => {
jest.spyOn(actionUtils, "isGhes").mockImplementation(() => true);
jest.spyOn(actionUtils, "isCacheFeatureAvailable").mockImplementation(
() => false
Expand Down

0 comments on commit c315286

Please sign in to comment.