File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
services/web/server/tests/unit/isolated Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1010
1111import pytest
1212from faker import Faker
13- from models_library .api_schemas_webserver .schemas import ThirdPartyToken
1413from models_library .api_schemas_webserver .users import (
1514 MyProfileGet ,
1615 MyProfilePatch ,
1716 MyProfilePrivacyGet ,
1817)
1918from models_library .generics import Envelope
19+ from models_library .users import UserThirdPartyToken
2020from models_library .utils .fastapi_encoders import jsonable_encoder
2121from pydantic import BaseModel
2222from servicelib .rest_constants import RESPONSE_MODEL_POLICY
2626
2727@pytest .mark .parametrize (
2828 "model_cls" ,
29- [MyProfileGet , ThirdPartyToken ],
29+ [MyProfileGet , UserThirdPartyToken ],
3030)
3131def test_user_models_examples (
3232 model_cls : type [BaseModel ], model_cls_examples : dict [str , Any ]
You can’t perform that action at this time.
0 commit comments