diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt index bd7677f5f29..bda74215d50 100644 --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt @@ -267,6 +267,7 @@ Robert Lu Robert Nikolich Roman Markeloff Roman Podoliaka +Samir Akarioh Samuel Colvin Sean Hunt Sebastian Acuna diff --git a/tests/test_run_app.py b/tests/test_run_app.py index 835f2c6714f..cd91d4b4282 100644 --- a/tests/test_run_app.py +++ b/tests/test_run_app.py @@ -518,7 +518,7 @@ def test_run_app_custom_backlog_unix(patched_loop: Any) -> None: def test_run_app_http_unix_socket(patched_loop: Any, tmp_path: Any) -> None: app = web.Application() - sock_path = str(tmp_path / "socket.sock") + sock_path = tmp_path / "socket.sock" printer = mock.Mock(wraps=stopper(patched_loop)) web.run_app(app, path=sock_path, print=printer, loop=patched_loop) @@ -532,7 +532,7 @@ def test_run_app_http_unix_socket(patched_loop: Any, tmp_path: Any) -> None: def test_run_app_https_unix_socket(patched_loop: Any, tmp_path: Any) -> None: app = web.Application() - sock_path = str(tmp_path / "socket.sock") + sock_path = tmp_path / "socket.sock" ssl_context = ssl.create_default_context() printer = mock.Mock(wraps=stopper(patched_loop)) web.run_app(