[tests] use "isinstance" instead of "type"
This commit is contained in:
parent
89a5f3aa52
commit
c7e29e399b
|
@ -122,8 +122,8 @@ async def test_JWTAuthenticationBackend(token_builder):
|
||||||
})
|
})
|
||||||
|
|
||||||
credentials, user = await backend.authenticate(req)
|
credentials, user = await backend.authenticate(req)
|
||||||
assert type(user) == JWTUser
|
assert isinstance(user, JWTUser)
|
||||||
assert type(credentials) == AuthCredentials
|
assert isinstance(credentials, AuthCredentials)
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.asyncio
|
@pytest.mark.asyncio
|
||||||
|
@ -137,8 +137,8 @@ async def test_JWTAuthenticationBackend_DebugFalse(token_debug_false_builder):
|
||||||
})
|
})
|
||||||
|
|
||||||
credentials, user = await backend.authenticate(req)
|
credentials, user = await backend.authenticate(req)
|
||||||
assert type(user) == JWTUser
|
assert isinstance(user, JWTUser)
|
||||||
assert type(credentials) == AuthCredentials
|
assert isinstance(credentials, AuthCredentials)
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.asyncio
|
@pytest.mark.asyncio
|
||||||
|
|
Loading…
Reference in New Issue