summary refs log tree commit diff
path: root/synapse/rest/client/v1
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2015-11-05 16:56:40 +0000
committerRichard van der Hoff <richard@matrix.org>2015-11-09 16:16:43 +0000
commit9107ed23b73b76347a63a2a2eea4e41f30f02062 (patch)
tree2f98cf4e57fadca44cdabdb2e09d33616bb9d4b7 /synapse/rest/client/v1
parentMerge pull request #354 from matrix-org/markjh/SYN-513 (diff)
downloadsynapse-9107ed23b73b76347a63a2a2eea4e41f30f02062.tar.xz
Add a couple of unit tests for room/<x>/messages
... merely because I was trying to figure out how it worked, and couldn't.
Diffstat (limited to 'synapse/rest/client/v1')
-rw-r--r--synapse/rest/client/v1/room.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/rest/client/v1/room.py b/synapse/rest/client/v1/room.py
index 6e0d93766b..f7012067f7 100644
--- a/synapse/rest/client/v1/room.py
+++ b/synapse/rest/client/v1/room.py
@@ -319,7 +319,7 @@ class RoomMemberListRestServlet(ClientV1RestServlet):
         }))
 
 
-# TODO: Needs unit testing
+# TODO: Needs better unit testing
 class RoomMessageListRestServlet(ClientV1RestServlet):
     PATTERN = client_path_pattern("/rooms/(?P<room_id>[^/]*)/messages$")