maj puit. corrs 2

This commit is contained in:
vaisse
2025-11-27 11:56:14 +01:00
parent 2b9fa81cc2
commit 710d3617ad

View File

@@ -34,9 +34,9 @@ class MoveTest {
Arguments.of(Move.ROCK,Move.SCISSORS), Arguments.of(Move.ROCK,Move.SCISSORS),
Arguments.of(Move.PAPER,Move.ROCK), Arguments.of(Move.PAPER,Move.ROCK),
Arguments.of(Move.SCISSORS,Move.PAPER), Arguments.of(Move.SCISSORS,Move.PAPER),
Arguments.of(Move.WELL, Move.SCISSORS), Arguments.of(Move.WELL,Move.SCISSORS),
Arguments.of(Move.WELL, Move.ROCK), Arguments.of(Move.WELL,Move.ROCK),
Arguments.of(Move.WELL, Move.PAPER) Arguments.of(Move.PAPER,Move.WELL)
); );
} }
} }