tests: Remove incorrect default 'last' value of '1'.

(imported from commit b2cfce7e7197b69d7d7c6c3253c21d0f8d341a98)
This commit is contained in:
Tim Abbott 2013-01-17 15:03:43 -05:00
parent 07edc87cb9
commit b6345e6c3d
1 changed files with 1 additions and 1 deletions

View File

@ -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)