Score implementation ergänzen #196

Merged
flixcoo merged 28 commits from feature/191-score-implementation-ergaenzen into development 2026-04-14 16:12:05 +00:00
Showing only changes of commit 0823a4ed41 - Show all commits

View File

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