diff options
author | Manolo Carrasco <manolo@apache.org> | 2010-05-28 06:59:36 +0000 |
---|---|---|
committer | Manolo Carrasco <manolo@apache.org> | 2010-05-28 06:59:36 +0000 |
commit | b54033b1d338a0d82cfa0a530efdb0de92ee672f (patch) | |
tree | 94dd399a4ea98368b699178734bda94a63d692bc /gwtquery-core | |
parent | c2c5ddc60c6bf757554628bea4d4d6ac59b46aa3 (diff) | |
download | gwtquery-b54033b1d338a0d82cfa0a530efdb0de92ee672f.tar.gz gwtquery-b54033b1d338a0d82cfa0a530efdb0de92ee672f.zip |
fixed tests
Diffstat (limited to 'gwtquery-core')
-rw-r--r-- | gwtquery-core/src/test/java/com/google/gwt/query/client/GQuerySelectorsTest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gwtquery-core/src/test/java/com/google/gwt/query/client/GQuerySelectorsTest.java b/gwtquery-core/src/test/java/com/google/gwt/query/client/GQuerySelectorsTest.java index 379c1a71..1c16237c 100644 --- a/gwtquery-core/src/test/java/com/google/gwt/query/client/GQuerySelectorsTest.java +++ b/gwtquery-core/src/test/java/com/google/gwt/query/client/GQuerySelectorsTest.java @@ -35,7 +35,7 @@ import com.google.gwt.user.client.ui.RootPanel; */ public class GQuerySelectorsTest extends GWTTestCase { - private interface AllSelectors extends Selectors { + protected interface AllSelectors extends Selectors { // @Selector("h1[id]:contains(Selectors)") // NodeList<Element> h1IdContainsSelectors(); // @Selector("*:first") @@ -118,7 +118,7 @@ public class GQuerySelectorsTest extends GWTTestCase { NodeList<Element> ulTocLiTocLine2(); } - private interface TestSelectors extends Selectors { + protected interface TestSelectors extends Selectors { @Selector("*:checked") GQuery allChecked(); @Selector("*:checked") |