correction
All checks were successful
rock-paper-scissors/pipeline/head This commit looks good

This commit is contained in:
2025-11-27 11:00:07 +01:00
parent b39bf8b726
commit 6ee72f6939
2 changed files with 2 additions and 5 deletions

View File

@@ -46,9 +46,7 @@ public class PlayControllerTest {
public static Stream<Arguments> scenario() {
return Stream.of(
Arguments.of(Move.ROCK, Move.SCISSORS, WIN),
Arguments.of(Move.ROCK, Move.PAPER, LOOSE),
Arguments.of(Move.WELL, Move.PAPER, LOOSE),
Arguments.of(Move.ROCK, Move.WELL, WIN)
Arguments.of(Move.ROCK, Move.PAPER, LOOSE)
);
}

View File

@@ -35,8 +35,7 @@ class MoveTest {
Arguments.of(Move.PAPER,Move.ROCK),
Arguments.of(Move.SCISSORS,Move.PAPER),
Arguments.of(Move.WELL,Move.ROCK),
Arguments.of(Move.WELL,Move.SCISSORS),
Arguments.of(Move.WELL,Move.PAPER)
Arguments.of(Move.WELL,Move.SCISSORS)
);
}
}