remove winner check
Some checks failed
Pull Request Pipeline / test (pull_request) Failing after 2m2s
Pull Request Pipeline / lint (pull_request) Successful in 2m9s

This commit is contained in:
gelbeinhalb
2026-01-20 16:31:52 +01:00
parent b33260ec23
commit 6c39e1e574

View File

@@ -167,13 +167,6 @@ void main() {
expect(match.id, testMatch.id); expect(match.id, testMatch.id);
expect(match.name, testMatch.name); expect(match.name, testMatch.name);
expect(match.createdAt, testMatch.createdAt); 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 // Group-Checks
if (testMatch.group != null) { if (testMatch.group != null) {