Skip to content

Commit

Permalink
Update battle.test.ts to reflect the fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DayKev committed Jul 11, 2024
1 parent 90f413f commit 7862e0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/battle/battle.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ describe("Test Battle Phase", () => {

it("test remove random battle seed int", async() => {
for (let i=0; i<10; i++) {
const rand = game.scene.randBattleSeedInt(15);
expect(rand).toBe(14);
const rand = game.scene.randBattleSeedInt(16);
expect(rand).toBe(15);
}
});

Expand Down

0 comments on commit 7862e0a

Please sign in to comment.