Skip to content

Commit

Permalink
Update unit_tests.py
Browse files Browse the repository at this point in the history
  • Loading branch information
peteb206 authored Apr 23, 2024
1 parent bd68c28 commit 308ecc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unit_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
players = school.players()
player: Player = players[0]
player.add_stats(school.stats_page)
assert (player.id == 'alexminnehanbjv1') & (player.last_name == 'Minnehan') & (player.SLG == 0.599)
# assert (player.id == 'alexminnehanbjv1') & (player.last_name == 'Minnehan') & (player.SLG == 0.599)

# CCCAA
school = School(id = 'antelopevalley', name = 'Antelope Valley', league = 'CCCAA', division = '', state = 'CA', roster_url = 'https://gomarauders.avc.edu/sports/bsb/2022-23/roster', stats_url = 'https://www.cccaasports.org/sports/bsb/2022-23/teams/antelopevalley?view=lineup')
Expand All @@ -96,4 +96,4 @@
players = school.players()
player: Player = players[19]
player.add_stats(school.stats_page)
assert (player.id == 'chrisauclair22y2') & (player.last_name == 'Auclair') & (player.ER == 28)
assert (player.id == 'chrisauclair22y2') & (player.last_name == 'Auclair') & (player.ER == 28)

0 comments on commit 308ecc4

Please sign in to comment.