Skip to content

Commit fcf7fc7

Browse files
committed
Merge branch 'staging'
2 parents a0ecdbe + 0966477 commit fcf7fc7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

monitoring/monitoring.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,12 @@ describe("Wise SQL metrics", function () {
7878
.with.length.gte(4);
7979
});
8080

81-
it("Less than 20% of confirm_vote were rejections", () => {
81+
it("Less than 50% of confirm_vote were rejections", () => {
8282
const confirmVotes = operations.filter((op) => op.operation_type === "confirm_vote");
8383
const rejections = confirmVotes
8484
.map(op => JSON.parse(op.json_str))
8585
.filter((confirmVote) => !confirmVote.accepted);
86-
expect(rejections.length).to.be.lte(confirmVotes.length / 5);
86+
expect(rejections.length).to.be.lte(confirmVotes.length * 0.5);
8787
});
8888

8989
it("More than 60% of voteorders are confirmed", () => {

0 commit comments

Comments
 (0)