Datenbankkorrekturen #25

Merged
flixcoo merged 7 commits from enhancement/24-datenbankkorrekturen into development 2025-11-16 20:57:40 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 630836d40c - Show all commits

View File

@@ -36,7 +36,7 @@ void main() {
await database.close(); await database.close();
}); });
group('group tests', () { group('group tests', () {
test('all groups get fetched correclty', () async { test('all groups get fetched correctly', () async {
final testgroup2 = Group( final testgroup2 = Group(
id: 'gr2', id: 'gr2',
name: 'Second Group', name: 'Second Group',

View File

@@ -24,7 +24,7 @@ void main() {
}); });
group('player tests', () { 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'); final testPlayer2 = Player(id: 'gr2', name: 'Second Group');
await database.playerDao.addPlayer(player: testPlayer); await database.playerDao.addPlayer(player: testPlayer);
await database.playerDao.addPlayer(player: testPlayer2); await database.playerDao.addPlayer(player: testPlayer2);