From 7e7b271ab4c08a9d8f8759094eceb7fbc61dd406 Mon Sep 17 00:00:00 2001 From: Dmitry Erlikh Date: Fri, 29 Oct 2021 08:07:18 +0200 Subject: [PATCH] Test ID params adjusted --- tests/test_client_session.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/test_client_session.py b/tests/test_client_session.py index 8418a42cf1..24b70d75bc 100644 --- a/tests/test_client_session.py +++ b/tests/test_client_session.py @@ -721,31 +721,31 @@ async def test_requote_redirect_url_default_disable() -> None: None, URL("http://example.com/test"), URL("http://example.com/test"), - id="base_url(None) + URL(http://example.com/test))", + id="base_url=None url=URL('http://example.com/test')", ), pytest.param( "http://example.com", "/test", URL("http://example.com/test"), - id="base_url(str(http://example.com)) + str(/test)", + id="base_url='http://example.com' url='/test'", ), pytest.param( "http://example.com", "test", URL("http://example.com/test"), - id="base_url(str(http://example.com)) + str(test)", + id="base_url='http://example.com' url='test'", ), pytest.param( URL("http://example.com"), "/test", URL("http://example.com/test"), - id="base_url(URL(http://example.com)) + str(/test)", + id="base_url=URL('http://example.com') url='/test'", ), pytest.param( URL("http://example.com"), "test", URL("http://example.com/test"), - id="base_url(URL(http://example.com)) + str(test)", + id="base_url=URL('http://example.com') url='test'", ), ], )