Skip to content

Commit

Permalink
fix missing_sports_hall test
Browse files Browse the repository at this point in the history
  • Loading branch information
djbrown authored Apr 27, 2024
1 parent 3d1df37 commit a4029a9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/games/tests/integration/test_import_games.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,9 @@ def test_additional_title(self):
self.assert_objects(Game, count=3)

def test_missing_sports_hall(self):
self.assert_command("import_associations", "-a", 79)
self.assert_command("import_districts", "-d", 79)
self.assert_command("import_leagues", "-s", 2023, "-l", 102551)
self.assert_command("import_games", "-g", 20000400)
self.assert_command("import_associations", "-a", 78)
self.assert_command("import_districts", "-d", 136)
self.assert_command("import_leagues", "-s", 2023, "-l", 107286)
self.assert_command("import_games", "-g", 606101092)
game = self.assert_objects(Game)
self.assertIsNone(game.sports_hall)

0 comments on commit a4029a9

Please sign in to comment.