From f5131356f4b603704da894e3bd55c1557da08bfa Mon Sep 17 00:00:00 2001 From: Zev Benjamin Date: Fri, 12 Oct 2012 14:29:23 -0400 Subject: [PATCH] Fix test broken by 0917d5c2ed1b156603ce53aaec88ecbe26f5f39c (imported from commit 1efce3527c52722deb5ea5ece4aa2bca5e0665c5) --- zephyr/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zephyr/tests.py b/zephyr/tests.py index cd045902d1..ed013cc731 100644 --- a/zephyr/tests.py +++ b/zephyr/tests.py @@ -354,7 +354,7 @@ class MessagePOSTTest(AuthedTestCase): result = self.client.post("/send_message/", {"type": "personal", "content": "Test message", "recipient": "nonexistent"}) - self.assert_json_error(result, "Invalid email") + self.assert_json_error(result, "Invalid email 'nonexistent'") def test_invalid_type(self): """