Skip to content

Commit

Permalink
Test ID params adjusted
Browse files Browse the repository at this point in the history
  • Loading branch information
derlih committed Oct 29, 2021
1 parent 4fceb36 commit 44b43d2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/test_client_session.py
Expand Up @@ -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'",
),
],
)
Expand Down

0 comments on commit 44b43d2

Please sign in to comment.