diff options
author | Manolo Carrasco <manolo@apache.org> | 2014-01-20 09:18:20 +0100 |
---|---|---|
committer | Manolo Carrasco <manolo@apache.org> | 2014-01-20 09:18:20 +0100 |
commit | a6e942e71cdf9111544f9c6551c87112af6171c4 (patch) | |
tree | 9c28b1929d4ee623985f45ffc33fe55bd342908d | |
parent | 6f8ccb8062ca975d2d75104cc4b08088944bc974 (diff) | |
parent | bcbb6d45752a62ecceb581473b082e0d019173c7 (diff) | |
download | gwtquery-a6e942e71cdf9111544f9c6551c87112af6171c4.tar.gz gwtquery-a6e942e71cdf9111544f9c6551c87112af6171c4.zip |
merge
-rw-r--r-- | gwtquery-core/src/test/java/com/google/gwt/query/client/GQueryAjaxTestGwt.java | 3 |
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(); } |