Uncomment tests

This commit is contained in:
Stuart Boston
2015-03-04 15:44:08 +00:00
parent 2c9f671345
commit ffdeb4c1b8
6 changed files with 20 additions and 25 deletions
@@ -90,9 +90,7 @@ public class TmdbKeywords extends AbstractMethod {
URL url = new ApiUrl(apiKey, MethodBase.KEYWORD).subMethod(MethodSub.MOVIES).buildUrl(parameters);
WrapperGenericList<MovieBasic> wrapper = processWrapper(getTypeReference(MovieBasic.class), url, "keyword movies");
TmdbResultsList<MovieBasic> results = new TmdbResultsList<MovieBasic>(wrapper.getResults());
results.copyWrapper(wrapper);
return results;
return wrapper.getTmdbResultsList();
}
}