Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
carneiro-cw committed Dec 20, 2024
1 parent 8761940 commit 84838e6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe("Leader & Follower change integration test", function () {
const version = await sendWithRetry("stratus_version", []);
expect(version).to.have.nested.property("git.commit");
expect(version.git.commit).to.be.a("string");
expect(version.git.commit.length).to.be.oneOf([7,8]);
expect(version.git.commit.length).to.be.oneOf([7, 8]);
});

it("Validate initial Follower state, health and version", async function () {
Expand All @@ -32,7 +32,7 @@ describe("Leader & Follower change integration test", function () {
const version = await sendWithRetry("stratus_version", []);
expect(version).to.have.nested.property("git.commit");
expect(version.git.commit).to.be.a("string");
expect(version.git.commit.length).to.be.oneOf([7,8]);
expect(version.git.commit.length).to.be.oneOf([7, 8]);
});

it("Change Leader to Leader should return false", async function () {
Expand Down

0 comments on commit 84838e6

Please sign in to comment.