Skip to content

Commit

Permalink
fix: fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
pnuckowski committed Dec 11, 2024
1 parent d9978f5 commit 36c0329
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_aioresponses.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ async def test_returned_instance_and_status_code(self, m):
("http://example.com/", "/api?foo=bar#fragment")
)
@aioresponses()
async def test_base_url(self, m, base_url, relative_url):
async def test_base_url(self, base_url, relative_url, m):
m.get(self.url, status=200)
self.session = ClientSession(base_url=base_url)
response = await self.session.get(relative_url)
Expand Down

0 comments on commit 36c0329

Please sign in to comment.