Port test_pagination on Python 3
* test_pagination: use an empty string rather None as marker for bisect. On Python 3, a comparison between None and strings now raises a TypeError. * Remove test_pagination from blacklist-py3.txt to run it on Python 3 Partially implements: blueprint trove-python3 Change-Id: I0c9c7d064ef7df2b15b40029264c33c9e9c9393e
This commit is contained in:
parent
091c255b67
commit
3bd6496998
@ -3,7 +3,6 @@
|
||||
backup.test_backup_models
|
||||
cluster.test_galera_cluster
|
||||
cluster.test_redis_cluster
|
||||
common.test_pagination
|
||||
guestagent.test_cassandra_manager
|
||||
guestagent.test_dbaas
|
||||
guestagent.test_mongodb_manager
|
||||
|
@ -42,7 +42,7 @@ class TestPaginatedDataView(trove_testtools.TestCase):
|
||||
next_page_marker=52)
|
||||
self.assertEqual("52", view.next_page_marker)
|
||||
|
||||
def _do_paginate_list(self, limit=None, marker=None, include_marker=False):
|
||||
def _do_paginate_list(self, limit=None, marker='', include_marker=False):
|
||||
li = ['a', 'b', 'c', 'd', 'e']
|
||||
return pagination.paginate_list(li, limit=limit, marker=marker,
|
||||
include_marker=include_marker)
|
||||
|
Loading…
x
Reference in New Issue
Block a user