Skip to content

Commit 2e534af

Browse files
committed
test: remove incremental marker
1 parent 1c3df3d commit 2e534af

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

tests/unit/test_pageiterator.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
from sasctl.core import PageIterator, RestObj
1212

1313

14-
@pytest.fixture(scope="function", params=[(6, 2, 2), (6, 1, 4), (6, 5, 4), (6, 6, 2), (100, 10, 20)])
14+
@pytest.fixture(
15+
scope="function", params=[(6, 2, 2), (6, 1, 4), (6, 5, 4), (6, 6, 2), (100, 10, 20)]
16+
)
1517
def paging(request):
1618
"""Create a RestObj designed to page through a collection of items and the
1719
collection itself.
@@ -56,7 +58,7 @@ def side_effect(_, link, **kwargs):
5658
assert req.call_count >= math.ceil(call_count)
5759

5860

59-
def test_no_paging_required(self):
61+
def test_no_paging_required():
6062
"""If "next" link not present, current items should be included."""
6163

6264
items = [{"name": "a"}, {"name": "b"}, {"name": "c"}]
@@ -79,7 +81,7 @@ def test_no_paging_required(self):
7981
)
8082

8183

82-
def test_paging_required(self, paging):
84+
def test_paging_required(paging):
8385
"""Requests should be made to retrieve additional pages."""
8486
obj, items, _ = paging
8587

0 commit comments

Comments
 (0)