Skip to content

Commit

Permalink
Update test_cookies_identity.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Nov 18, 2023
1 parent a6761e5 commit 8cec6af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_cookies_identity.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ async def authorized_userid(self, identity):
pass


async def test_remember(loop, aiohttp_client):
async def test_remember(aiohttp_client):

async def handler(request):
response = web.Response()
Expand All @@ -31,7 +31,7 @@ async def handler(request):
assert 'Andrew' == resp.cookies['AIOHTTP_SECURITY'].value


async def test_identify(loop, aiohttp_client):
async def test_identify(aiohttp_client):

async def create(request):
response = web.Response()
Expand All @@ -56,7 +56,7 @@ async def check(request):
assert 200 == resp.status


async def test_forget(loop, aiohttp_client):
async def test_forget(aiohttp_client):

async def index(request):
return web.Response()
Expand Down

0 comments on commit 8cec6af

Please sign in to comment.