diff --git a/tests/HttpV4/Controllers/AnimeControllerTest.php b/tests/HttpV4/Controllers/AnimeControllerTest.php index 732d92e..fb6cf9d 100644 --- a/tests/HttpV4/Controllers/AnimeControllerTest.php +++ b/tests/HttpV4/Controllers/AnimeControllerTest.php @@ -406,9 +406,14 @@ class AnimeControllerV4Test extends TestCase [ 'mal_id', 'url', - 'votes', + 'type', + 'reactions', 'date', 'review', + 'score', + 'tags', + 'is_spoiler', + 'is_preliminary', 'episodes_watched', 'scores' => [ 'overall', @@ -508,7 +513,7 @@ class AnimeControllerV4Test extends TestCase ] ]); - $this->get('/v4/anime/1/userupdates?page=100') + $this->get('/v4/anime/1/userupdates?page=200') ->seeStatusCode(404); } diff --git a/tests/HttpV4/Controllers/MangaControllerTest.php b/tests/HttpV4/Controllers/MangaControllerTest.php index 0967e53..589b158 100644 --- a/tests/HttpV4/Controllers/MangaControllerTest.php +++ b/tests/HttpV4/Controllers/MangaControllerTest.php @@ -228,9 +228,14 @@ class MangaControllerV4Test extends TestCase [ 'mal_id', 'url', - 'votes', + 'type', + 'reactions', 'date', 'review', + 'score', + 'tags', + 'is_spoiler', + 'is_preliminary', 'chapters_read', 'scores' => [ 'overall', @@ -331,7 +336,7 @@ class MangaControllerV4Test extends TestCase ] ]); - $this->get('/v4/manga/1/userupdates?page=100') + $this->get('/v4/manga/1/userupdates?page=200') ->seeStatusCode(404); } diff --git a/tests/HttpV4/Controllers/PersonControllerTest.php b/tests/HttpV4/Controllers/PersonControllerTest.php index e7e64e1..3f80a09 100644 --- a/tests/HttpV4/Controllers/PersonControllerTest.php +++ b/tests/HttpV4/Controllers/PersonControllerTest.php @@ -112,7 +112,6 @@ class PersonControllerTest extends TestCase 'images' => [ 'jpg' => [ 'image_url', - 'small_image_url', ], 'webp' => [ 'image_url', diff --git a/tests/HttpV4/Controllers/ReviewsControllerTest.php b/tests/HttpV4/Controllers/ReviewsControllerTest.php index d6ce5c8..8c2b2f9 100644 --- a/tests/HttpV4/Controllers/ReviewsControllerTest.php +++ b/tests/HttpV4/Controllers/ReviewsControllerTest.php @@ -17,18 +17,14 @@ class ReviewsControllerTest extends TestCase 'mal_id', 'url', 'type', - 'votes', + 'reactions', 'date', 'review', + 'score', + 'tags', + 'is_spoiler', + 'is_preliminary', 'episodes_watched', - 'scores' => [ - 'overall', - 'story', - 'animation', - 'sound', - 'character', - 'enjoyment', - ], 'entry' => [ 'mal_id', 'url', @@ -77,17 +73,14 @@ class ReviewsControllerTest extends TestCase 'mal_id', 'url', 'type', - 'votes', + 'reactions', 'date', 'review', + 'score', + 'tags', + 'is_spoiler', + 'is_preliminary', 'chapters_read', - 'scores' => [ - 'overall', - 'story', - 'art', - 'character', - 'enjoyment', - ], 'entry' => [ 'mal_id', 'url', @@ -121,4 +114,4 @@ class ReviewsControllerTest extends TestCase ] ]); } -} \ No newline at end of file +} diff --git a/tests/HttpV4/Controllers/UserControllerTest.php b/tests/HttpV4/Controllers/UserControllerTest.php index 85a4316..6695a98 100644 --- a/tests/HttpV4/Controllers/UserControllerTest.php +++ b/tests/HttpV4/Controllers/UserControllerTest.php @@ -274,9 +274,13 @@ class UserControllerTest extends TestCase 'mal_id', 'url', 'type', - 'votes', + 'reactions', 'date', 'review', + 'score', + 'tags', + 'is_spoiler', + 'is_preliminary', 'entry' => [ 'mal_id', 'url',