1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-26 21:14:19 +00:00

🧹 Remove useless parameter

This commit is contained in:
Steffo 2020-10-08 19:29:41 +02:00
parent bcd4647743
commit 4335e01fb4
2 changed files with 2 additions and 2 deletions

View file

@ -37,7 +37,7 @@ async def test_failing_check():
campaign, = await AsyncCampaign.create(start=gen())
with pytest.raises(ChallengeFailedError):
await campaign.next(None)
await campaign.next()
@pytest.mark.asyncio

View file

@ -34,7 +34,7 @@ def test_failing_check():
campaign, = Campaign.create(start=gen())
with pytest.raises(ChallengeFailedError):
campaign.next(None)
campaign.next()
def test_switching():