Fix test for /accounts/logout

(imported from commit 256929fc4d462832358c31c99bd470a23ffaba29)
This commit is contained in:
Keegan McAllister 2012-10-30 00:18:01 -04:00
parent 5bcb522952
commit 7267ba9cd2
1 changed files with 2 additions and 2 deletions

View File

@ -116,8 +116,8 @@ class PublicURLTest(TestCase):
# FIXME: We should also test the Tornado URLs -- this codepath
# can't do so because this Django test mechanism doesn't go
# through Tornado.
urls = {200: ["/accounts/home/", "/accounts/login/", "/accounts/logout/"],
302: ["/"],
urls = {200: ["/accounts/home/", "/accounts/login/"],
302: ["/", "/accounts/logout/"],
400: ["/accounts/register/",
"/api/v1/get_public_streams",
"/api/v1/get_subscriptions",