mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-22 03:33:08 +00:00
Fix library section all test with max results
This commit is contained in:
parent
00f80cb424
commit
ce51fc70e9
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ def test_library_section_get_movie(plex):
|
|||
def test_library_section_movies_all(movies):
|
||||
# size should always be none unless pagenation is being used.
|
||||
assert movies.totalSize == 4
|
||||
assert len(movies.all(container_start=0, container_size=1)) == 1
|
||||
assert len(movies.all(container_start=0, container_size=1, maxresults=1)) == 1
|
||||
|
||||
|
||||
def test_library_section_delete(movies, patched_http_call):
|
||||
|
|
Loading…
Reference in a new issue