Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ndv99 committed Jun 5, 2024
1 parent a82e103 commit 44d919d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/store/reservedip/action.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ it("can create an action for creating a reserved IP", () => {
});

it("can create an action for deleting a reserved IP", () => {
expect(actions.delete(1)).toEqual({
expect(actions.delete(1, "10.0.0.2")).toEqual({
type: "reservedip/delete",
meta: {
model: "reservedip",
Expand All @@ -41,6 +41,7 @@ it("can create an action for deleting a reserved IP", () => {
payload: {
params: {
id: 1,
ip: "10.0.0.2",
},
},
});
Expand Down

0 comments on commit 44d919d

Please sign in to comment.