diff --git a/test/vanilla/AcceptanceTests/asynctests/test_url.py b/test/vanilla/AcceptanceTests/asynctests/test_url.py index 4c3a322b99f..63a8302121c 100644 --- a/test/vanilla/AcceptanceTests/asynctests/test_url.py +++ b/test/vanilla/AcceptanceTests/asynctests/test_url.py @@ -136,6 +136,10 @@ async def test_array_csv_in_path(self, client): async def test_string_url_encoded(self, client): await client.paths.string_url_encoded() + @pytest.mark.asyncio + async def test_paths_unicode(self, client): + await client.paths.string_unicode() + @pytest.mark.asyncio async def test_string_url_non_encoded(self, client): await client.paths.string_url_non_encoded() @@ -211,6 +215,10 @@ async def test_queries_enum(self, client): await client.queries.enum_valid(UriColor.green_color) await client.queries.enum_null(None) + @pytest.mark.asyncio + async def test_queries_unicode(self, client): + await client.queries.string_unicode() + @pytest.mark.asyncio async def test_array_string_csv(self, client, test_array_query): await client.queries.array_string_csv_empty([]) diff --git a/test/vanilla/AcceptanceTests/test_url.py b/test/vanilla/AcceptanceTests/test_url.py index 743b30ef548..696bb00f0d7 100644 --- a/test/vanilla/AcceptanceTests/test_url.py +++ b/test/vanilla/AcceptanceTests/test_url.py @@ -116,6 +116,9 @@ def test_array_csv_in_path(self, client): def test_string_url_encoded(self, client): client.paths.string_url_encoded() + def test_paths_unicode(self, client): + client.paths.string_unicode() + def test_string_url_non_encoded(self, client): client.paths.string_url_non_encoded() @@ -177,6 +180,9 @@ def test_queries_enum(self, client): client.queries.enum_valid(UriColor.green_color) client.queries.enum_null(None) + def test_queries_unicode(self, client): + client.queries.string_unicode() + def test_array_string_csv(self, client, test_array_query): client.queries.array_string_csv_empty([]) client.queries.array_string_csv_null(None)