diff --git a/src/test/java/com/uwetrottmann/trakt5/services/SyncTest.java b/src/test/java/com/uwetrottmann/trakt5/services/SyncTest.java index 2d0491e8..80c40fef 100644 --- a/src/test/java/com/uwetrottmann/trakt5/services/SyncTest.java +++ b/src/test/java/com/uwetrottmann/trakt5/services/SyncTest.java @@ -203,8 +203,7 @@ public void test_collectionShows() throws IOException { Response> response = executeCallWithoutReadingBody( getTrakt().sync().collectionShows(PAGE_ONE, LIST_AND_COLLECTION_MAX_LIMIT, Extended.METADATA)); - // As of 2026-03-06, when filtering to shows pagination appears to be not supported (yet?) - // assertListPaginationHeaders(response); + assertListPaginationHeaders(response); assertSyncShows(response.body(), "collection"); } diff --git a/src/test/java/com/uwetrottmann/trakt5/services/UsersTest.java b/src/test/java/com/uwetrottmann/trakt5/services/UsersTest.java index 828a341a..580c68d1 100644 --- a/src/test/java/com/uwetrottmann/trakt5/services/UsersTest.java +++ b/src/test/java/com/uwetrottmann/trakt5/services/UsersTest.java @@ -116,8 +116,7 @@ public void test_collectionShows() throws IOException { Response> response = executeCallWithoutReadingBody( getTrakt().users().collectionShows(TestData.USER_SLUG, PAGE_ONE, LIST_AND_COLLECTION_MAX_LIMIT, null)); - // As of 2026-03-06, when filtering to shows pagination appears to be not supported (yet?) - // assertListPaginationHeaders(response); + assertListPaginationHeaders(response); assertSyncShows(response.body(), "collection"); }