Skip to content

Commit

Permalink
Fix for existing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
neildaniels committed Aug 27, 2021
1 parent de40074 commit 8cbd7d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/Tmdb/Tests/Repository/MovieRepositoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public function shouldLoadMovie()
$repository->load(self::MOVIE_ID);
$this->assertLastRequestIsWithPathAndMethod('/3/movie/' . self::MOVIE_ID);
$this->assertRequestHasQueryParameters([
'append_to_response' => 'alternative_titles,external_ids,changes,credits,images,keywords,lists,release_dates,reviews,similar,recommendations,translations,videos'
'append_to_response' => 'alternative_titles,external_ids,changes,credits,images,keywords,lists,release_dates,reviews,similar,recommendations,translations,videos,watch/providers'
]);
}

Expand Down
2 changes: 1 addition & 1 deletion test/Tmdb/Tests/Repository/TvRepositoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public function shouldLoadTv()
$repository->load(self::TV_ID);
$this->assertLastRequestIsWithPathAndMethod('/3/tv/' . self::TV_ID);
$this->assertRequestHasQueryParameters(
['append_to_response' => 'credits,external_ids,images,translations,similar,recommendations,keywords,changes,content_ratings,alternative_titles,videos']
['append_to_response' => 'credits,external_ids,images,translations,similar,recommendations,keywords,changes,content_ratings,alternative_titles,videos,watch/providers']
);
}

Expand Down

0 comments on commit 8cbd7d7

Please sign in to comment.