Typo
All checks were successful
Pull Request Pipeline / lint (pull_request) Successful in 2m25s
Pull Request Pipeline / test (pull_request) Successful in 2m25s

This commit is contained in:
2025-11-21 14:24:57 +01:00
parent dbb52cfc48
commit ab250e2df4
3 changed files with 6 additions and 6 deletions

View File

@@ -68,7 +68,7 @@ void main() {
});
group('Game Tests', () {
test('Adding and fetching single game works correclty', () async {
test('Adding and fetching single game works correctly', () async {
await database.gameDao.addGame(game: testGame1);
final result = await database.gameDao.getGameById(gameId: testGame1.id);
@@ -187,7 +187,7 @@ void main() {
expect(gameExists, true);
});
test('Deleting a game works correclty', () async {
test('Deleting a game works correctly', () async {
await database.gameDao.addGame(game: testGame1);
final gameDeleted = await database.gameDao.deleteGame(