Author: thomas.heute(a)jboss.com
Date: 2008-08-22 11:35:30 -0400 (Fri, 22 Aug 2008)
New Revision: 11729
Modified:
branches/JBoss_Portal_Branch_2_7/widget/src/main/org/jboss/portal/test/widget/netvibes/NetvibesQueryTestCase.java
Log:
Fixing test case
Modified:
branches/JBoss_Portal_Branch_2_7/widget/src/main/org/jboss/portal/test/widget/netvibes/NetvibesQueryTestCase.java
===================================================================
---
branches/JBoss_Portal_Branch_2_7/widget/src/main/org/jboss/portal/test/widget/netvibes/NetvibesQueryTestCase.java 2008-08-22
11:27:01 UTC (rev 11728)
+++
branches/JBoss_Portal_Branch_2_7/widget/src/main/org/jboss/portal/test/widget/netvibes/NetvibesQueryTestCase.java 2008-08-22
15:35:30 UTC (rev 11729)
@@ -36,14 +36,14 @@
public void test01() throws Exception
{
NetvibesQuery q = new NetvibesQuery(0, 10, "14", "top",
"foo");
-
assertEquals("http://eco.netvibes.com/rss-partner.php?synd=jboss&...;,
q.buildQueryURL().toString());
+
assertEquals("http://api.eco.netvibes.com/search/?type=uwa&limit...;,
q.buildQueryURL().toString());
}
public void test02() throws Exception
{
NetvibesQuery q = new NetvibesQuery(1, 11, "5", "foo",
"bar");
-
assertEquals("http://eco.netvibes.com/rss-partner.php?synd=jboss&...;,
q.buildQueryURL().toString());
+
assertEquals("http://api.eco.netvibes.com/search/?type=uwa&limit...;,
q.buildQueryURL().toString());
}
public void test03()