mypy: Fix an unnecessary duplicate type declaration.

This commit is contained in:
Tim Abbott 2017-10-31 10:45:54 -07:00
parent ee61e1be2c
commit 5e3ba1f20f
1 changed files with 1 additions and 2 deletions

View File

@ -962,7 +962,7 @@ class GetOldMessagesTest(ZulipTestCase):
anchor=next_message_id,
num_after=10,
num_before=0,
)) # type: Dict[str, Dict]
))
self.assertEqual(len(result['messages']), 4)
messages = result['messages']
@ -983,7 +983,6 @@ class GetOldMessagesTest(ZulipTestCase):
english_message['match_content'],
u'<p>I want to go to <span class="highlight">日本</span>!</p>')
@override_settings(USING_PGROONGA=False)
def test_get_messages_with_search_not_subscribed(self):
# type: () -> None