From 630836d40cd3d50104f54c0a786015028289e3ca Mon Sep 17 00:00:00 2001 From: Felix Kirchner Date: Sun, 16 Nov 2025 21:53:04 +0100 Subject: [PATCH] typo --- test/db_tests/group_test.dart | 2 +- test/db_tests/player_test.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/db_tests/group_test.dart b/test/db_tests/group_test.dart index e8e6316..d8d6ce2 100644 --- a/test/db_tests/group_test.dart +++ b/test/db_tests/group_test.dart @@ -36,7 +36,7 @@ void main() { await database.close(); }); group('group tests', () { - test('all groups get fetched correclty', () async { + test('all groups get fetched correctly', () async { final testgroup2 = Group( id: 'gr2', name: 'Second Group', diff --git a/test/db_tests/player_test.dart b/test/db_tests/player_test.dart index 9f12faa..5258c66 100644 --- a/test/db_tests/player_test.dart +++ b/test/db_tests/player_test.dart @@ -24,7 +24,7 @@ void main() { }); group('player tests', () { - test('all players get fetched correclty', () async { + test('all players get fetched correctly', () async { final testPlayer2 = Player(id: 'gr2', name: 'Second Group'); await database.playerDao.addPlayer(player: testPlayer); await database.playerDao.addPlayer(player: testPlayer2);