Skip to content

Commit a0c6c05

Browse files
committed
isolated tests
1 parent 0fb7368 commit a0c6c05

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/web/server/tests/unit/isolated/test_users_models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010

1111
import pytest
1212
from faker import Faker
13-
from models_library.api_schemas_webserver.schemas import ThirdPartyToken
1413
from models_library.api_schemas_webserver.users import (
1514
MyProfileGet,
1615
MyProfilePatch,
1716
MyProfilePrivacyGet,
1817
)
1918
from models_library.generics import Envelope
19+
from models_library.users import UserThirdPartyToken
2020
from models_library.utils.fastapi_encoders import jsonable_encoder
2121
from pydantic import BaseModel
2222
from servicelib.rest_constants import RESPONSE_MODEL_POLICY
@@ -26,7 +26,7 @@
2626

2727
@pytest.mark.parametrize(
2828
"model_cls",
29-
[MyProfileGet, ThirdPartyToken],
29+
[MyProfileGet, UserThirdPartyToken],
3030
)
3131
def test_user_models_examples(
3232
model_cls: type[BaseModel], model_cls_examples: dict[str, Any]

0 commit comments

Comments
 (0)