Skip to content

Commit 7c5995f

Browse files
Bump aiohttp from 3.8.3 to 3.8.6 (soxoj#1222)
* Bump aiohttp from 3.8.3 to 3.8.6 Bumps [aiohttp](https://github.com/aio-libs/aiohttp) from 3.8.3 to 3.8.6. - [Release notes](https://github.com/aio-libs/aiohttp/releases) - [Changelog](https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst) - [Commits](aio-libs/aiohttp@v3.8.3...v3.8.6) --- updated-dependencies: - dependency-name: aiohttp dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Fixed problematic test after aiohttp upgrade --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Soxoj <soxoj@protonmail.com>
1 parent aee1773 commit 7c5995f

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
aiodns==3.0.0
2-
aiohttp==3.8.3
2+
aiohttp==3.8.6
33
aiohttp-socks==0.7.1
44
arabic-reshaper~=3.0.0
55
async-timeout==4.0.2

tests/test_activation.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ async def test_import_aiohttp_cookies():
4141
f.write(COOKIES_TXT)
4242

4343
cookie_jar = import_aiohttp_cookies(cookies_filename)
44-
assert list(cookie_jar._cookies.keys()) == ['xss.is', 'httpbin.org']
44+
# new aiohttp support
45+
assert list(cookie_jar._cookies.keys()) in (['xss.is', 'httpbin.org'], [('xss.is', '/'), ('httpbin.org', '/')])
4546

4647
url = 'https://httpbin.org/cookies'
4748
connector = aiohttp.TCPConnector(ssl=False)

0 commit comments

Comments
 (0)