Skip to content

Commit

Permalink
PEP8
Browse files Browse the repository at this point in the history
  • Loading branch information
gbastien committed Jul 9, 2015
1 parent 62737b7 commit fd08400
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plone/batching/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,8 @@ def test_lastpage_with_orphans(self):
def test_items_not_on_page(self):
batch = BaseBatch(range(20), 5, start=5)
self.assertEqual(batch.items_not_on_page,
[0, 1, 2, 3, 4, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19])
[0, 1, 2, 3, 4, 10, 11, 12,
13, 14, 15, 16, 17, 18, 19])
self.assertEqual(list(batch), [5, 6, 7, 8, 9])

def test_batch_bsize(self):
Expand Down

0 comments on commit fd08400

Please sign in to comment.