From 7a1dfb449c1dce3c58b719ae571b90c4b8c19122 Mon Sep 17 00:00:00 2001 From: andrebastosdias Date: Sat, 4 Apr 2026 15:04:07 +0100 Subject: [PATCH] Lint --- test/sim/abilities/cheekpouch.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/sim/abilities/cheekpouch.js b/test/sim/abilities/cheekpouch.js index e626c20d6d..b9ea3fba24 100644 --- a/test/sim/abilities/cheekpouch.js +++ b/test/sim/abilities/cheekpouch.js @@ -40,7 +40,7 @@ describe(`Cheek Pouch`, () => { battle.makeChoices(); assert.fullHP(battle.p1.active[0]); }); - + it(`can activate multiple times if the user eats multiple Berries in a row`, () => { battle = common.createBattle([[ { species: 'darkrai', ability: 'cheekpouch', item: 'sitrusberry', moves: ['fling'] }, @@ -50,7 +50,7 @@ describe(`Cheek Pouch`, () => { battle.makeChoices(); assert.equal( battle.getDebugLog().split('\n').filter(line => line.startsWith('|-heal|p2a: Deoxys') && line.endsWith('[from] ability: Cheek Pouch')).length, - 2, + 2 ); }); });