Ignore type error in DRF view test

This commit is contained in:
Bruno Alla 2023-02-09 09:16:03 +00:00
parent b8f7da6db9
commit b19be04fad
No known key found for this signature in database

View File

@ -26,7 +26,7 @@ class TestUserViewSet:
view.request = request
response = view.me(request) # type: ignore [arg-type]
response = view.me(request) # type: ignore
assert response.data == {
"username": user.username,