summary refs log tree commit diff
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2017-11-01 10:18:59 +0000
committerRichard van der Hoff <richard@matrix.org>2017-11-01 10:19:42 +0000
commit02237ce725fcdf2646f3e72d6be3ed6e2aa6519d (patch)
tree4a9b6f20578a35a1041122690e88b124cf406108
parentRemove the last vestiges of refresh_tokens (diff)
downloadsynapse-02237ce725fcdf2646f3e72d6be3ed6e2aa6519d.tar.xz
Fix tests for refresh_token removal
-rw-r--r--tests/storage/test_registration.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/storage/test_registration.py b/tests/storage/test_registration.py
index 316ecdb32d..7c7b164ee6 100644
--- a/tests/storage/test_registration.py
+++ b/tests/storage/test_registration.py
@@ -86,7 +86,8 @@ class RegistrationStoreTestCase(unittest.TestCase):
 
         # now delete some
         yield self.store.user_delete_access_tokens(
-            self.user_id, device_id=self.device_id, delete_refresh_tokens=True)
+            self.user_id, device_id=self.device_id,
+        )
 
         # check they were deleted
         user = yield self.store.get_user_by_access_token(self.tokens[1])
@@ -97,8 +98,7 @@ class RegistrationStoreTestCase(unittest.TestCase):
         self.assertEqual(self.user_id, user["name"])
 
         # now delete the rest
-        yield self.store.user_delete_access_tokens(
-            self.user_id, delete_refresh_tokens=True)
+        yield self.store.user_delete_access_tokens(self.user_id)
 
         user = yield self.store.get_user_by_access_token(self.tokens[0])
         self.assertIsNone(user,