Removing a build-breaking test that was merged in my cherrypick at
r4314 or 1.6's c4298... the test isn't valid without code that wasn't in
the cherrypick, namely 1.6's c4263


git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@4330 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/test/com/google/gwt/user/client/ui/CheckBoxTest.java b/user/test/com/google/gwt/user/client/ui/CheckBoxTest.java
index c7ba8e2..de31315 100644
--- a/user/test/com/google/gwt/user/client/ui/CheckBoxTest.java
+++ b/user/test/com/google/gwt/user/client/ui/CheckBoxTest.java
@@ -111,12 +111,6 @@
     cb.setValue(true, true);
     assertTrue(h.received);
 
-    try {
-      cb.setValue(null);
-      fail("Should throw IllegalArgumentException");
-    } catch (IllegalArgumentException e) {
-      /* pass */
-    }
   }
 
   static class ListenerTester implements ClickListener {