aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManolo Carrasco <manolo@apache.org>2014-01-20 09:18:20 +0100
committerManolo Carrasco <manolo@apache.org>2014-01-20 09:18:20 +0100
commita6e942e71cdf9111544f9c6551c87112af6171c4 (patch)
tree9c28b1929d4ee623985f45ffc33fe55bd342908d
parent6f8ccb8062ca975d2d75104cc4b08088944bc974 (diff)
parentbcbb6d45752a62ecceb581473b082e0d019173c7 (diff)
downloadgwtquery-a6e942e71cdf9111544f9c6551c87112af6171c4.tar.gz
gwtquery-a6e942e71cdf9111544f9c6551c87112af6171c4.zip
merge
-rw-r--r--gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryAjaxTestGwt.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryAjaxTestGwt.java b/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryAjaxTestGwt.java
index 188e516e..ee35efa2 100644
--- a/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryAjaxTestGwt.java
+++ b/gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryAjaxTestGwt.java
@@ -26,7 +26,6 @@ import com.google.gwt.junit.client.GWTTestCase;
import com.google.gwt.query.client.builders.Name;
import com.google.gwt.query.client.builders.XmlBuilder;
import com.google.gwt.query.client.plugins.ajax.Ajax;
-import com.google.gwt.query.client.plugins.ajax.Ajax.Settings;
import com.google.gwt.user.client.ui.HTML;
import com.google.gwt.user.client.ui.RootPanel;
@@ -173,7 +172,7 @@ public class GQueryAjaxTestGwt extends GWTTestCase {
String testJsonpUrl = "http://www.google.com";
Ajax.getJSONP(testJsonpUrl, null, new Function(){
public void f() {
- Properties p = getDataProperties();
+ Properties p = arguments(0);
assertNull(p);
finishTest();
}