From 2e454a530a24b93e0c082cebf38db67f73e560e6 Mon Sep 17 00:00:00 2001 From: gelbeinhalb Date: Tue, 20 Jan 2026 16:31:52 +0100 Subject: [PATCH] remove winner test again --- test/db_tests/match_test.dart | 7 ------- 1 file changed, 7 deletions(-) diff --git a/test/db_tests/match_test.dart b/test/db_tests/match_test.dart index 8408586..5e09088 100644 --- a/test/db_tests/match_test.dart +++ b/test/db_tests/match_test.dart @@ -167,13 +167,6 @@ void main() { expect(match.id, testMatch.id); expect(match.name, testMatch.name); expect(match.createdAt, testMatch.createdAt); - if (match.winner != null && testMatch.winner != null) { - expect(match.winner!.id, testMatch.winner!.id); - expect(match.winner!.name, testMatch.winner!.name); - expect(match.winner!.createdAt, testMatch.winner!.createdAt); - } else { - expect(match.winner, testMatch.winner); - } // Group-Checks if (testMatch.group != null) {