From afdf18be57348983de3b866913b6b0d2f01fe6a8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 6 Mar 2026 06:13:31 +0000 Subject: [PATCH 1/2] Initial plan From ba3c220f699c1a4fe13d06be36d2a3bac9ee8211 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 6 Mar 2026 06:16:52 +0000 Subject: [PATCH 2/2] Fix test_operation_with_enum: remove reference to removed IMPORT_ENUM duplicate Co-authored-by: msyyc <70930885+msyyc@users.noreply.github.com> --- .../legacy/AcceptanceTests/asynctests/test_reserved_words.py | 1 - .../test/vanilla/legacy/AcceptanceTests/test_reserved_words.py | 1 - 2 files changed, 2 deletions(-) diff --git a/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/asynctests/test_reserved_words.py b/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/asynctests/test_reserved_words.py index 8c362e6323f..11cd3c9bf8d 100644 --- a/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/asynctests/test_reserved_words.py +++ b/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/asynctests/test_reserved_words.py @@ -66,4 +66,3 @@ async def test_operation_with_url(client): @pytest.mark.asyncio async def test_operation_with_enum(client): await client.reserved_enum(models.MyEnum.IMPORT) - await client.reserved_enum(models.MyEnum.IMPORT_ENUM) diff --git a/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/test_reserved_words.py b/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/test_reserved_words.py index fbfceb2fe25..228abeae9e2 100644 --- a/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/test_reserved_words.py +++ b/packages/autorest.python/test/vanilla/legacy/AcceptanceTests/test_reserved_words.py @@ -59,4 +59,3 @@ def test_operation_with_url(client): def test_operation_with_enum(client): client.reserved_enum(models.MyEnum.IMPORT) - client.reserved_enum(models.MyEnum.IMPORT_ENUM)