More build unbreaking. My previous fixed missed a case in which IE was changing tag capitalization.

Patch by: bruce
Review by: jlabanca (TBR)


git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@2480 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/test/com/google/gwt/user/client/ui/CaptionPanelTest.java b/user/test/com/google/gwt/user/client/ui/CaptionPanelTest.java
index 84f01f8..5e38593 100644
--- a/user/test/com/google/gwt/user/client/ui/CaptionPanelTest.java
+++ b/user/test/com/google/gwt/user/client/ui/CaptionPanelTest.java
@@ -124,7 +124,7 @@
     {
       CaptionPanel panel = new CaptionPanel(s, true);
       assertEquals("this is not null", panel.getCaptionText());
-      assertEquals(s, panel.getCaptionHTML());
+      assertEqualsIgnoreCase(s, panel.getCaptionHTML());
     }
   }