diff options
author | Richard van der Hoff <richard@matrix.org> | 2015-11-05 16:56:40 +0000 |
---|---|---|
committer | Richard van der Hoff <richard@matrix.org> | 2015-11-09 16:16:43 +0000 |
commit | 9107ed23b73b76347a63a2a2eea4e41f30f02062 (patch) | |
tree | 2f98cf4e57fadca44cdabdb2e09d33616bb9d4b7 /synapse | |
parent | Merge pull request #354 from matrix-org/markjh/SYN-513 (diff) | |
download | synapse-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')
-rw-r--r-- | synapse/rest/client/v1/room.py | 2 |
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$") |