Skip to content
This repository was archived by the owner on May 22, 2026. It is now read-only.

Commit 564f1d6

Browse files
author
iscai-msft
committed
fix mock tests
1 parent 8d602a6 commit 564f1d6

3 files changed

Lines changed: 3 additions & 4 deletions

File tree

packages/typespec-python/test/azure/mock_api_tests/test_generation_subdir.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/typespec-python/test/generic_mock_api_tests/asynctests/test_generation_subdir_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# license information.
55
# --------------------------------------------------------------------------
66
import pytest
7-
from authentication.apikey.aio import CustomizedApiKeyClient
7+
from authentication.api.key.subdir.aio import CustomizedApiKeyClient
88

99

1010
@pytest.mark.asyncio

packages/typespec-python/test/generic_mock_api_tests/test_generation_subdir.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# license information.
55
# --------------------------------------------------------------------------
66
import pytest
7-
from authentication.apikey.subdir import CustomizedApiKeyClient
7+
from authentication.api.key.subdir import CustomizedApiKeyClient
88

99

1010
def test_custom_method(key_credential):
@@ -14,7 +14,7 @@ def test_custom_method(key_credential):
1414

1515
def test_custom_model():
1616
try:
17-
from authentication.apikey import InvalidAuth
17+
from authentication.api.key.subdir import InvalidAuth
1818

1919
assert InvalidAuth is not None
2020
except ImportError:

0 commit comments

Comments
 (0)