Skip to content

Commit dc7fe63

Browse files
committed
Tweak tournament test
1 parent f901a76 commit dc7fe63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_player.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ def test_match_reproducibility():
200200
def test_tournament_reproducibility():
201201
rng = RandomGenerator()
202202
seed = rng.random_seed_int()
203-
strategies = rng.choice(all_strategies, size=2)
203+
strategies = rng.choice(all_strategies, size=10)
204204
players1 = [Player(strategy) for strategy in strategies]
205205
tournament1 = Tournament(players1, seed=seed, repetitions=2)
206206
results1 = tournament1.play(processes=2)

0 commit comments

Comments
 (0)