Skip to content

Commit

Permalink
remove deprecated user field #1363
Browse files Browse the repository at this point in the history
  • Loading branch information
jh-RLI committed Nov 27, 2024
1 parent 6d32183 commit 9686a42
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions api/tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,7 @@ def setUpClass(cls):
cls.token = Token.objects.get(user=cls.user)

cls.other_user, _ = myuser.objects.get_or_create(
name="NotMrTest",
email="[email protected]",
did_agree=True,
is_mail_verified=True,
name="NotMrTest", email="[email protected]", did_agree=True
)
cls.other_user.save()
cls.other_token = Token.objects.get(user=cls.other_user)
Expand Down

0 comments on commit 9686a42

Please sign in to comment.