mirror of https://github.com/zulip/zulip.git
tests: Remove incorrect default 'last' value of '1'.
(imported from commit b2cfce7e7197b69d7d7c6c3253c21d0f8d341a98)
This commit is contained in:
parent
07edc87cb9
commit
b6345e6c3d
|
@ -919,7 +919,7 @@ class GetUpdatesTest(AuthedTestCase):
|
|||
self.assertGreater(message['id'], 1)
|
||||
self.assertIn(message['id'], correct_message_ids)
|
||||
|
||||
post_data = {"last": str(1), "first": str(1)}
|
||||
post_data = {}
|
||||
post_data.update(extra_post_data)
|
||||
request = POSTRequestMock(post_data, user, callback)
|
||||
self.assertEquals(view_func(request), RespondAsynchronously)
|
||||
|
|
Loading…
Reference in New Issue