summary refs log tree commit diff
diff options
context:
space:
mode:
authorOlivier Wilkinson (reivilibre) <oliverw@matrix.org>2021-12-13 14:57:00 +0000
committerOlivier Wilkinson (reivilibre) <oliverw@matrix.org>2021-12-13 14:57:00 +0000
commit405f3f958045bfa6b14ded796896d0b8a249a546 (patch)
tree5d77d9706389e19b345d2a331af8b027ebf8b3cd
parentTEMPORARY Revert "Use get_device (fixing in upstream develop)" (diff)
downloadsynapse-405f3f958045bfa6b14ded796896d0b8a249a546.tar.xz
Fix comment
-rw-r--r--tests/api/test_auth.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/api/test_auth.py b/tests/api/test_auth.py
index 3c9ca52922..6f15ce22d5 100644
--- a/tests/api/test_auth.py
+++ b/tests/api/test_auth.py
@@ -260,7 +260,7 @@ class AuthTestCase(unittest.HomeserverTestCase):
         # This just needs to return a truth-y value.
         self.store.get_user_by_id = simple_async_mock({"is_guest": False})
         self.store.get_user_by_access_token = simple_async_mock(None)
-        # This also needs to just return a truth-y value
+        # This also needs to just return a falsey value
         self.store.get_device_opt = simple_async_mock(None)
 
         request = Mock(args={})