Skip to content

Commit 8cbd7d7

Browse files
committed
Fix for existing tests
1 parent de40074 commit 8cbd7d7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

test/Tmdb/Tests/Repository/MovieRepositoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function shouldLoadMovie()
3030
$repository->load(self::MOVIE_ID);
3131
$this->assertLastRequestIsWithPathAndMethod('/3/movie/' . self::MOVIE_ID);
3232
$this->assertRequestHasQueryParameters([
33-
'append_to_response' => 'alternative_titles,external_ids,changes,credits,images,keywords,lists,release_dates,reviews,similar,recommendations,translations,videos'
33+
'append_to_response' => 'alternative_titles,external_ids,changes,credits,images,keywords,lists,release_dates,reviews,similar,recommendations,translations,videos,watch/providers'
3434
]);
3535
}
3636

test/Tmdb/Tests/Repository/TvRepositoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public function shouldLoadTv()
2828
$repository->load(self::TV_ID);
2929
$this->assertLastRequestIsWithPathAndMethod('/3/tv/' . self::TV_ID);
3030
$this->assertRequestHasQueryParameters(
31-
['append_to_response' => 'credits,external_ids,images,translations,similar,recommendations,keywords,changes,content_ratings,alternative_titles,videos']
31+
['append_to_response' => 'credits,external_ids,images,translations,similar,recommendations,keywords,changes,content_ratings,alternative_titles,videos,watch/providers']
3232
);
3333
}
3434

0 commit comments

Comments
 (0)