tests: Rename stream messages tests in test_message_send.py.

This commit renames 'test_message_to_self' and
'test_api_message_to_self' tests to
'test_message_to_stream_by_name' and
'test_api_message_to_stream_by_name' to depict
the actual purpose of these tests.
This commit is contained in:
sahil839 2020-09-24 00:34:36 +05:30 committed by Tim Abbott
parent 5ae2325979
commit fe370debe5
1 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ class MessagePOSTTest(ZulipTestCase):
with self.assertRaisesRegex(JsonableError, error_msg):
self.send_stream_message(user, stream_name)
def test_message_to_self(self) -> None:
def test_message_to_stream_by_name(self) -> None:
"""
Sending a message to a stream to which you are subscribed is
successful.
@ -90,7 +90,7 @@ class MessagePOSTTest(ZulipTestCase):
"topic": "Test topic"})
self.assert_json_success(result)
def test_api_message_to_self(self) -> None:
def test_api_message_to_stream_by_name(self) -> None:
"""
Same as above, but for the API view
"""