Skip to content

Commit

Permalink
test(relayer): corrects test description
Browse files Browse the repository at this point in the history
  • Loading branch information
fcanela committed Dec 10, 2024
1 parent 48f4053 commit a9a3c00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion relayer-cli/src/utils/shutdownManager.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ describe("ShutdownManager", () => {
expect(instance.getIsShuttingDown()).toBe(true);
});

it("should return true when isShuttingDown is false", () => {
it("should return false when isShuttingDown is false", () => {
const instance = new ShutdownManager(false);
expect(instance.getIsShuttingDown()).toBe(false);
});
Expand Down

0 comments on commit a9a3c00

Please sign in to comment.