Remove email from User API Test

This commit is contained in:
Andrew Chen Wang 2021-02-16 18:35:47 -05:00 committed by GitHub
parent 17499a12c9
commit 8aeee881bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,6 @@ class TestUserViewSet:
assert response.data == {
"username": user.username,
"email": user.email,
"name": user.name,
"url": f"http://testserver/api/users/{user.username}/",
}