From b2a3a0cf7513629c65409cc941306e78ac71549b Mon Sep 17 00:00:00 2001 From: gelbeinhalb Date: Wed, 21 Jan 2026 11:55:15 +0100 Subject: [PATCH] fix getting non-existent team throws exception test --- test/db_tests/team_test.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/db_tests/team_test.dart b/test/db_tests/team_test.dart index 2725411..df2c93c 100644 --- a/test/db_tests/team_test.dart +++ b/test/db_tests/team_test.dart @@ -253,7 +253,7 @@ void main() { test('Getting non-existent team throws exception', () async { expect( () => database.teamDao.getTeamById(teamId: 'non-existent-id'), - throwsA(isA()), + throwsA(isA()), ); });