Skip to content

Commit 5d8d980

Browse files
fix: tests
1 parent 4734c61 commit 5d8d980

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/mru-6.test.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -155,11 +155,11 @@ describe("League with 6 teams", async () => {
155155

156156
// should have 2 new matches in the second round
157157
expect(machine.state.meta.round).to.equal(2);
158-
expect(machine.state.matches.length).to.equal(4);
158+
expect(machine.state.matches.length).to.equal(5);
159159

160160
// should have 1 incomplete match at round 2
161161
const incompleteMatches = machine.state.matches.filter((m) => !m.endTime);
162-
expect(incompleteMatches.length).to.equal(1);
162+
expect(incompleteMatches.length).to.equal(2);
163163
});
164164

165165
it("should be able to complete round 2", async () => {

0 commit comments

Comments
 (0)