Corrected type
All checks were successful
Pull Request Pipeline / test (pull_request) Successful in 42s
Pull Request Pipeline / lint (pull_request) Successful in 46s

This commit is contained in:
2026-04-12 01:21:17 +02:00
parent 22753d29c1
commit 0823a4ed41

View File

@@ -294,7 +294,7 @@ void main() {
expect(matchData['notes'], testMatch.notes); expect(matchData['notes'], testMatch.notes);
// Check player ids // Check player ids
final playerIds = matchData['playerIds'] as List<String>; final playerIds = matchData['playerIds'] as List<dynamic>;
expect(playerIds.length, 2); expect(playerIds.length, 2);
expect(playerIds, containsAll([testPlayer1.id, testPlayer2.id])); expect(playerIds, containsAll([testPlayer1.id, testPlayer2.id]));