Skip to content
This repository has been archived by the owner on Nov 19, 2021. It is now read-only.

Commit

Permalink
sometimes daily trends returns only 23 trends
Browse files Browse the repository at this point in the history
git-svn-id: http://yusuke.homeip.net/svn/twitter4j/trunk@293 117b7e0d-5933-0410-9d29-ab41bb01d86b
  • Loading branch information
yusuke committed May 17, 2009
1 parent a09b1f7 commit ddfe30f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/java/twitter4j/AsyncTwitterTest.java
Expand Up @@ -831,7 +831,7 @@ public void testTrendsAsync() throws Exception {
twitterAPI1.getDailyTrendsAsync(this);
waitForResponse();
assertTrue(100000 > (trends.getAsOf().getTime() - System.currentTimeMillis()));
assertEquals(24, trendsList.size());
assertTrue(20 < trendsList.size());
assertTrends(trendsList, 20);

twitterAPI1.getDailyTrendsAsync(new Date(), true, this);
Expand Down

0 comments on commit ddfe30f

Please sign in to comment.