Skip to content

Commit

Permalink
Merge branch 'master' into avoid_break_in_finally
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Feb 11, 2025
2 parents 6530c90 + 343c632 commit 74e8d71
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion requirements/constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ gidgethub==5.3.0
# via cherry-picker
gunicorn==23.0.0
# via -r requirements/base.in
identify==2.6.6
identify==2.6.7
# via pre-commit
idna==3.6
# via
Expand Down
2 changes: 1 addition & 1 deletion requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ gidgethub==5.3.0
# via cherry-picker
gunicorn==23.0.0
# via -r requirements/base.in
identify==2.6.6
identify==2.6.7
# via pre-commit
idna==3.6
# via
Expand Down
2 changes: 1 addition & 1 deletion requirements/lint.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ filelock==3.17.0
# via virtualenv
freezegun==1.5.1
# via -r requirements/lint.in
identify==2.6.6
identify==2.6.7
# via pre-commit
idna==3.7
# via trustme
Expand Down
2 changes: 1 addition & 1 deletion tests/test_urldispatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ def test_add_static_path_resolution(router: web.UrlDispatcher) -> None:
"""Test that static paths are expanded and absolute."""
res = router.add_static("/", "~/..")
directory = str(res.get_info()["directory"])
assert directory == str(pathlib.Path.home().parent)
assert directory == str(pathlib.Path.home().resolve(strict=True).parent)


def test_add_static(router: web.UrlDispatcher) -> None:
Expand Down

0 comments on commit 74e8d71

Please sign in to comment.