From a0fca9e69aea49c302077777c1ec08f678136ee9 Mon Sep 17 00:00:00 2001 From: Stuart Boston Date: Mon, 25 Feb 2013 08:45:54 +0000 Subject: [PATCH] Fixed Russian test name --- .../java/com/omertron/themoviedbapi/TheMovieDbApiTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/com/omertron/themoviedbapi/TheMovieDbApiTest.java b/src/test/java/com/omertron/themoviedbapi/TheMovieDbApiTest.java index 13ab6c8d0..b323bcb18 100644 --- a/src/test/java/com/omertron/themoviedbapi/TheMovieDbApiTest.java +++ b/src/test/java/com/omertron/themoviedbapi/TheMovieDbApiTest.java @@ -123,8 +123,8 @@ public class TheMovieDbApiTest { assertTrue("No movies found, should be at least 1", movieList.size() > 0); // Try a russian langugage movie - movieList = tmdb.searchMovie("О чём говор�?т мужчины", 0, "ru", true, 0); - assertTrue("No movies found, should be at least 1", movieList.size() > 0); + movieList = tmdb.searchMovie("О чём говорят мужчины", 0, "ru", true, 0); + assertTrue("No 'RU' movies found, should be at least 1", movieList.size() > 0); // Try a movie with more than 20 results movieList = tmdb.searchMovie("Star Wars", 0, "en", false, 0);