Skip to content

Commit 5b8809f

Browse files
committed
cp
1 parent 5ceddbf commit 5b8809f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/mettagrid/tests/test_vibe_triggered_actions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def test_attack_triggers_on_move_with_matching_vibe(self):
5454
actions=ActionsConfig(
5555
noop=NoopActionConfig(),
5656
move=MoveActionConfig(),
57-
change_vibe=ChangeVibeActionConfig(number_of_vibes=10),
57+
change_vibe=ChangeVibeActionConfig(),
5858
attack=AttackActionConfig(
5959
enabled=False, # Disable direct attack actions
6060
vibes=["charger"], # Attack triggers on move when agent has charger vibe
@@ -118,7 +118,7 @@ def test_no_attack_without_matching_vibe(self):
118118
actions=ActionsConfig(
119119
noop=NoopActionConfig(),
120120
move=MoveActionConfig(),
121-
change_vibe=ChangeVibeActionConfig(number_of_vibes=10),
121+
change_vibe=ChangeVibeActionConfig(),
122122
attack=AttackActionConfig(
123123
enabled=False,
124124
vibes=["charger"], # Attack only triggers with charger vibe
@@ -172,7 +172,7 @@ def test_movement_works_normally_into_empty_space(self):
172172
actions=ActionsConfig(
173173
noop=NoopActionConfig(),
174174
move=MoveActionConfig(),
175-
change_vibe=ChangeVibeActionConfig(number_of_vibes=10),
175+
change_vibe=ChangeVibeActionConfig(),
176176
attack=AttackActionConfig(
177177
enabled=False,
178178
vibes=["charger"],

0 commit comments

Comments
 (0)