Skip to content

Commit

Permalink
fix test and lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ndv99 committed Jun 7, 2024
1 parent b67557e commit 214f7b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 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, "10.0.0.2")).toEqual({
expect(actions.delete({ id: 1, ip: "10.0.0.2" })).toEqual({
type: "reservedip/delete",
meta: {
model: "reservedip",
Expand Down

0 comments on commit 214f7b4

Please sign in to comment.