Fixing the UiBinderTestApp. The tests don't use the app itself,
just its constituent modules, so I didn't notice that you could
no longer actually run the thing.

Desk review by amitmanjhi

git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@6572 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/src/com/google/gwt/uibinder/UiBinder.gwt.xml b/user/src/com/google/gwt/uibinder/UiBinder.gwt.xml
index 75f6535..2c239e7 100644
--- a/user/src/com/google/gwt/uibinder/UiBinder.gwt.xml
+++ b/user/src/com/google/gwt/uibinder/UiBinder.gwt.xml
@@ -14,8 +14,7 @@
 
 <!-- GWT UI Binder support.                                                 -->
 <module>
-  <!-- Inheriting the debug module -->
-  <inherits name="com.google.gwt.debug.Debug"/>
+  <inherits name="com.google.gwt.resources.Resources" />
   
   <generate-with class="com.google.gwt.uibinder.rebind.UiBinderGenerator">
     <when-type-assignable class="com.google.gwt.uibinder.client.UiBinder"/>
diff --git a/user/test/com/google/gwt/uibinder/test/UiBinderTestApp.gwt.xml b/user/test/com/google/gwt/uibinder/test/UiBinderTestApp.gwt.xml
index 725b7e6..190e301 100644
--- a/user/test/com/google/gwt/uibinder/test/UiBinderTestApp.gwt.xml
+++ b/user/test/com/google/gwt/uibinder/test/UiBinderTestApp.gwt.xml
@@ -13,7 +13,7 @@
 
 <!-- GWT UiBinder support.                                                  -->
 <module>
-  <inherits name="com.google.gwt.resources.Resources" />
   <inherits name="com.google.gwt.uibinder.UiBinder" />
-  <entry-point class="com.google.gwt.uibinder.sample.client.UiBinderTestApp" />
+  <inherits name="com.google.gwt.debug.Debug"/>
+  <entry-point class="com.google.gwt.uibinder.test.client.UiBinderTestApp" />
 </module>
diff --git a/user/test/com/google/gwt/uibinder/test/public/UiBinderDemo.html b/user/test/com/google/gwt/uibinder/test/public/UiBinderTestApp.html
similarity index 91%
rename from user/test/com/google/gwt/uibinder/test/public/UiBinderDemo.html
rename to user/test/com/google/gwt/uibinder/test/public/UiBinderTestApp.html
index 441677c..4fa83bf 100644
--- a/user/test/com/google/gwt/uibinder/test/public/UiBinderDemo.html
+++ b/user/test/com/google/gwt/uibinder/test/public/UiBinderTestApp.html
@@ -16,6 +16,6 @@
 <html>
   <head></head>
   <body>
-    <script language='javascript' src='com.google.gwt.uibinder.sample.UiBinderDemo.nocache.js'></script>
+    <script language='javascript' src='com.google.gwt.uibinder.test.UiBinderTestApp.nocache.js'></script>
   </body>
 </html>