Fix library section all test with max results

This commit is contained in:
JonnyWong16 2020-12-23 17:46:38 -08:00
parent 00f80cb424
commit ce51fc70e9
No known key found for this signature in database
GPG key ID: B1F1F9807184697A

View file

@ -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):