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:
parent
bcd4647743
commit
4335e01fb4
2 changed files with 2 additions and 2 deletions
|
@ -37,7 +37,7 @@ async def test_failing_check():
|
||||||
|
|
||||||
campaign, = await AsyncCampaign.create(start=gen())
|
campaign, = await AsyncCampaign.create(start=gen())
|
||||||
with pytest.raises(ChallengeFailedError):
|
with pytest.raises(ChallengeFailedError):
|
||||||
await campaign.next(None)
|
await campaign.next()
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.asyncio
|
@pytest.mark.asyncio
|
||||||
|
|
|
@ -34,7 +34,7 @@ def test_failing_check():
|
||||||
|
|
||||||
campaign, = Campaign.create(start=gen())
|
campaign, = Campaign.create(start=gen())
|
||||||
with pytest.raises(ChallengeFailedError):
|
with pytest.raises(ChallengeFailedError):
|
||||||
campaign.next(None)
|
campaign.next()
|
||||||
|
|
||||||
|
|
||||||
def test_switching():
|
def test_switching():
|
||||||
|
|
Loading…
Reference in a new issue