From 0f5297423fa1ef98c499161b83d07c8e072b2fee Mon Sep 17 00:00:00 2001 From: Eduardo Quezada Date: Mon, 13 May 2024 11:25:49 -0400 Subject: [PATCH] Fixed Knock Off upcoming test --- test/battle/move_effect/knock_off.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/battle/move_effect/knock_off.c b/test/battle/move_effect/knock_off.c index 93039e0017..ba6f9b6fe7 100644 --- a/test/battle/move_effect/knock_off.c +++ b/test/battle/move_effect/knock_off.c @@ -96,7 +96,7 @@ SINGLE_BATTLE_TEST("Knock Off does not remove items through Substitute") ANIMATION(ANIM_TYPE_MOVE, MOVE_KNOCK_OFF, player); NOT { ANIMATION(ANIM_TYPE_GENERAL, B_ANIM_ITEM_KNOCKOFF); } } THEN { - EXPECT(opponent->item == ITEM_NONE); + EXPECT(opponent->item == ITEM_LEFTOVERS); } }