Skip to content

Commit 922e722

Browse files
- All tests pass locally.
1 parent 4bad40d commit 922e722

File tree

1 file changed

+1
-1
lines changed
  • test/python/flask/github

1 file changed

+1
-1
lines changed

test/python/flask/github/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def get_members():
193193
"""Retrieve organization members dynamically from template."""
194194
page = int(request.args.get('page', 1))
195195
per_page = 10
196-
total_pages = 2
196+
total_pages = 4
197197
members = []
198198
for i in range((page - 1) * per_page + 1, page * per_page + 1):
199199
members.append({

0 commit comments

Comments
 (0)