We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1c8bd9 commit 3cb3e78Copy full SHA for 3cb3e78
2 files changed
tests/brawlapi/test_async.py
@@ -75,7 +75,7 @@ async def test_club_search(self):
75
76
async def test_battle_logs(self):
77
logs = await self.client.get_battle_logs(self.player_tag)
78
- self.assertTrue(isinstance(logs, list))
+ self.assertTrue(isinstance(logs, brawlstats.brawlapi.BattleLog))
79
80
# Other
81
async def test_invalid_tag(self):
tests/brawlapi/test_blocking.py
@@ -74,7 +74,7 @@ def test_club_search(self):
74
def test_battle_logs(self):
logs = self.client.get_battle_logs(self.player_tag)
def test_invalid_tag(self):
0 commit comments