Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ public enum AppendToResponseItem {

// Applies to TV Shows
CONTENT_RATINGS("content_ratings"),
AGGREGATE_CREDITS("aggregate_credits"),

// Applies to People
MOVIE_CREDITS("movie_credits"),
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/uwetrottmann/tmdb2/TestData.java
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ private static void initializeTestingIntegrityData() throws ParseException {
testTvShow.external_ids.facebook_id = "TheSimpsons";
testTvShow.external_ids.freebase_mid = "/m/07c72";
testTvShow.external_ids.freebase_id = "/en/the_simpsons";
testTvShow.external_ids.instagram_id= "thesimpsonsfox";
testTvShow.external_ids.instagram_id= "thesimpsons";
testTvShow.external_ids.tvrage_id = 6190;
testTvShow.external_ids.twitter_id = "thesimpsons";
testTvShow.external_ids.wikidata_id = "Q886";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,6 @@ public static void assertTvShow(TvShow tvShow) {
}

assertThat(tvShow.episode_run_time).isNotNull();
assertThat(tvShow.episode_run_time).isNotEmpty();
for (Integer runTime : tvShow.episode_run_time) {
assertThat(runTime).isNotNull();
assertThat(runTime).isGreaterThanOrEqualTo(0);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ public void primary_translations() throws IOException {
"hi-IN",
"hr-HR",
"hu-HU",
"hy-AM",
"id-ID",
"it-IT",
"it-VA",
Expand Down