Updated this test yet again, to deal with the fact that property reads of innerHTML have inconsistent capitalization on different browers (ie, IE upper-cases tags, while FF & Safari lower-case them).
git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@154 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/test/com/google/gwt/user/client/ui/TabBarTest.java b/user/test/com/google/gwt/user/client/ui/TabBarTest.java
index 1c8d679..bf0d43b 100644
--- a/user/test/com/google/gwt/user/client/ui/TabBarTest.java
+++ b/user/test/com/google/gwt/user/client/ui/TabBarTest.java
@@ -60,7 +60,7 @@
bar.addTab("<b>bar</b>", true);
bar.addTab("baz");
assertEquals("foo", bar.getTabHTML(0));
- assertEquals("<b>bar</b>", bar.getTabHTML(1));
+ assertTrue("<b>bar</b>".equalsIgnoreCase(bar.getTabHTML(1)));
bar.removeTab(1);
assertEquals("baz", bar.getTabHTML(1));
}