From 400c90d0a702d553175494f47ec9fe91b12cbea9 Mon Sep 17 00:00:00 2001 From: "H. Shay" Date: Wed, 16 Aug 2023 09:23:11 -0700 Subject: requested changes --- tests/handlers/test_oauth_delegation.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/handlers/test_oauth_delegation.py') diff --git a/tests/handlers/test_oauth_delegation.py b/tests/handlers/test_oauth_delegation.py index c86af57d22..82c26e303f 100644 --- a/tests/handlers/test_oauth_delegation.py +++ b/tests/handlers/test_oauth_delegation.py @@ -500,7 +500,7 @@ class MSC3861OAuthDelegation(HomeserverTestCase): ) ) - # first call should cache response - check cache + # first call should cache response # Mpyp ignores below are due to mypy not understanding the dynamic substitution of msc3861 auth code # for regular auth code via the config self.get_success( @@ -531,7 +531,7 @@ class MSC3861OAuthDelegation(HomeserverTestCase): "active": "true", "scope": "guest", "jti": "stale", - "exp": self.clock.time_msec() + 100, + "exp": self.clock.time() + 100, }, ) ) @@ -543,7 +543,7 @@ class MSC3861OAuthDelegation(HomeserverTestCase): self.assertEqual(self.http_client.request.call_count, 1) # advance the reactor past the token expiry but less than the cache expiry - self.reactor.advance(30) + self.reactor.advance(120) self.assertEqual(self.auth._token_cache.get("stale"), introspection_token) # type: ignore[attr-defined] # check that the next call causes another http request (which will fail because the token is technically expired -- cgit 1.5.1