fix compile error

master
yihua.huang 2013-08-25 16:31:00 +08:00
parent 5e9e8b2541
commit d7abbd0e4b
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ public class TextContentSelectorTest {
public void testDownload() { public void testDownload() {
String s = new HttpClientDownloader().download("http://blog.codecraft.us/blog/2013/08/18/ti-yan-dao-liao-open-sourcede-mei-li/", "utf-8") String s = new HttpClientDownloader().download("http://blog.codecraft.us/blog/2013/08/18/ti-yan-dao-liao-open-sourcede-mei-li/", "utf-8")
.smartContent().text().toString(); .smartContent().text().toString();
Assert.assertNotNull(text); Assert.assertNotNull(s);
} }
} }