From 4d0ad41307aa8ca77ac328b486256f0fca061334 Mon Sep 17 00:00:00 2001 From: Alex Vandiver Date: Fri, 28 Aug 2020 16:16:43 -0700 Subject: [PATCH] export: Fix emoji mentioned in tests to be correct. --- zerver/tests/test_management_commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zerver/tests/test_management_commands.py b/zerver/tests/test_management_commands.py index 7ab909407e..ddf0916fe7 100644 --- a/zerver/tests/test_management_commands.py +++ b/zerver/tests/test_management_commands.py @@ -441,7 +441,7 @@ class TestExport(ZulipTestCase): realm = get_realm("zulip") self.send_stream_message(self.example_user("othello"), "Verona", topic_name="Export", - content="Thumbs up for export") + content="Outbox emoji for export") message = Message.objects.last() do_add_reaction(self.example_user("iago"), message, "outbox", "1f4e4", Reaction.UNICODE_EMOJI) do_add_reaction(self.example_user("hamlet"), message, "outbox", "1f4e4", Reaction.UNICODE_EMOJI) @@ -458,7 +458,7 @@ class TestExport(ZulipTestCase): self.assertEqual(mock_print.mock_calls, [ call('\033[94mExporting realm\033[0m: zulip'), - call('\n\033[94mMessage content:\033[0m\nThumbs up for export\n'), + call('\n\033[94mMessage content:\033[0m\nOutbox emoji for export\n'), call('\033[94mNumber of users that reacted outbox:\033[0m 2 / 13 total users\n'), ])