Ignore type error in test

This commit is contained in:
Bruno Alla 2023-02-08 17:54:32 +00:00
parent 9508faf484
commit 55b59c0156
No known key found for this signature in database

View File

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