From b33260ec23177589edf5a6bef05bc4feebee96aa Mon Sep 17 00:00:00 2001 From: gelbeinhalb Date: Tue, 20 Jan 2026 16:31:43 +0100 Subject: [PATCH] fix match missing game --- test/db_tests/player_match_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/db_tests/player_match_test.dart b/test/db_tests/player_match_test.dart index ce6d331..b44ccf6 100644 --- a/test/db_tests/player_match_test.dart +++ b/test/db_tests/player_match_test.dart @@ -214,8 +214,8 @@ void main() { 'Adding the same player to separate matches works correctly', () async { final playersList = [testPlayer1, testPlayer2, testPlayer3]; - final match1 = Match(name: 'Match 1', players: playersList); - final match2 = Match(name: 'Match 2', players: playersList); + final match1 = Match(name: 'Match 1', game: testGame, players: playersList); + final match2 = Match(name: 'Match 2', game: testGame, players: playersList); await Future.wait([ database.matchDao.addMatch(match: match1),