From 493e58fc8091427fb2eb518c96bc51a5fb64e7cd Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Sun, 19 Nov 2023 23:35:51 +0100 Subject: [PATCH] Add an xfail reason to `test_no_host` --- tests/test_url_parsing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_url_parsing.py b/tests/test_url_parsing.py index e240cd7ee..cc753fcd0 100644 --- a/tests/test_url_parsing.py +++ b/tests/test_url_parsing.py @@ -214,7 +214,7 @@ def test_no_path(self): assert u.query_string == "" assert u.fragment == "" - @pytest.mark.xfail + @pytest.mark.xfail(reason="https://github.com/aio-libs/yarl/issues/821") def test_no_host(self): u = URL("//:80") assert u.scheme == ""