Fixed random auth_tests.test_tokens.TokenGeneratorTest.test_10265 failures.

Random failures depended on the current timestamp.
This commit is contained in:
Mariusz Felisiak 2019-11-13 10:33:32 +01:00
parent 3b4b36fb1d
commit ca0d50f34a
1 changed files with 3 additions and 4 deletions

View File

@ -27,12 +27,11 @@ class TokenGeneratorTest(TestCase):
The token generated for a user created in the same request
will work correctly.
"""
# See ticket #10265
user = User.objects.create_user('comebackkid', 'test3@example.com', 'testpw')
p0 = PasswordResetTokenGenerator()
user_reload = User.objects.get(username='comebackkid')
p0 = MockedPasswordResetTokenGenerator(datetime.now())
tk1 = p0.make_token(user)
reload = User.objects.get(username='comebackkid')
tk2 = p0.make_token(reload)
tk2 = p0.make_token(user_reload)
self.assertEqual(tk1, tk2)
def test_timeout(self):