fix off by one in this unit test

This commit is contained in:
gtully 2014-10-09 23:06:50 +01:00
parent 8216e7f4d5
commit 5f865f0f80
1 changed files with 1 additions and 1 deletions

View File

@ -209,6 +209,6 @@ public class QueueBrowsingTest {
}
browser.close();
assertEquals(maxPageSize + 2, received);
assertEquals(maxPageSize + 1, received);
}
}