From e95471a87615f8119a7a338888e1efb16b5fc3bd Mon Sep 17 00:00:00 2001 From: Bertie690 <136088738+Bertie690@users.noreply.github.com> Date: Thu, 14 Aug 2025 16:10:17 -0400 Subject: [PATCH] Fix vitest.d.ts --- test/@types/vitest.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/@types/vitest.d.ts b/test/@types/vitest.d.ts index c771387efb8..853c18e1190 100644 --- a/test/@types/vitest.d.ts +++ b/test/@types/vitest.d.ts @@ -165,7 +165,7 @@ declare module "vitest" { * @param ppUsed - The numerical amount of PP that should have been consumed, * or `all` to indicate the move should be _out_ of PP * @remarks - * If the Pokemon's moveset has been set via {@linkcode Overrides.MOVESET_OVERRIDE}/{@linkcode Overrides.OPP_MOVESET_OVERRIDE} + * If the Pokemon's moveset has been set via {@linkcode Overrides.MOVESET_OVERRIDE}/{@linkcode Overrides.ENEMY_MOVESET_OVERRIDE} * or does not contain exactly one copy of `moveId`, this will fail the test. */ toHaveUsedPP(moveId: MoveId, ppUsed: number | "all"): void;