diff --git a/test/testUtils/helpers/moveHelper.ts b/test/testUtils/helpers/moveHelper.ts index 4963a1dd273..5ac5877a54a 100644 --- a/test/testUtils/helpers/moveHelper.ts +++ b/test/testUtils/helpers/moveHelper.ts @@ -65,12 +65,12 @@ export class MoveHelper extends GameManagerHelper { if (movePosition === -1) { expect.fail( `MoveHelper.select called with move '${toReadableString(MoveId[move])}' not in moveset!` + - `\nBattler Index: ${toReadableString(BattlerIndex[pkmIndex])}` + - `\nMoveset: [${this.game.scene - .getPlayerParty() - [pkmIndex].getMoveset() - .map(pm => toReadableString(MoveId[pm.moveId])) - .join(", ")}]`, + `\nBattler Index: ${toReadableString(BattlerIndex[pkmIndex])}` + + `\nMoveset: [${this.game.scene + .getPlayerParty() + [pkmIndex].getMoveset() + .map(pm => toReadableString(MoveId[pm.moveId])) + .join(", ")}]`, ); } @@ -109,12 +109,12 @@ export class MoveHelper extends GameManagerHelper { if (movePosition === -1) { expect.fail( `MoveHelper.selectWithTera called with move '${toReadableString(MoveId[move])}' not in moveset!` + - `\nBattler Index: ${toReadableString(BattlerIndex[pkmIndex])}` + - `\nMoveset: [${this.game.scene - .getPlayerParty() - [pkmIndex].getMoveset() - .map(pm => toReadableString(MoveId[pm.moveId])) - .join(", ")}]`, + `\nBattler Index: ${toReadableString(BattlerIndex[pkmIndex])}` + + `\nMoveset: [${this.game.scene + .getPlayerParty() + [pkmIndex].getMoveset() + .map(pm => toReadableString(MoveId[pm.moveId])) + .join(", ")}]`, ); }