From 1c38130626809840e48d6b7dee6df3b6fda95e7a Mon Sep 17 00:00:00 2001 From: Steve Howell Date: Sat, 28 Oct 2017 08:01:36 -0700 Subject: [PATCH] tests: Fix send_message calls in test_export.py. --- zerver/tests/test_export.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zerver/tests/test_export.py b/zerver/tests/test_export.py index 0b3f746009..7c205a34ff 100644 --- a/zerver/tests/test_export.py +++ b/zerver/tests/test_export.py @@ -50,7 +50,7 @@ class QueryUtilTest(ZulipTestCase): self.example_email('hamlet'), self.example_email('iago')]: for _ in range(5): - self.send_message(email, self.example_email('othello'), Recipient.PERSONAL) + self.send_personal_message(email, self.example_email('othello')) @slow('creates lots of data') def test_query_chunker(self):