Fix incorrect invocation of UriUtils.fromSafeConstant with non-constant 
arguments.

Change-Id: I642e368cb794ef3f1e1151bdd4d0f1866db8f3f9
diff --git a/user/test/com/google/gwt/uibinder/test/client/FakeBundle.java b/user/test/com/google/gwt/uibinder/test/client/FakeBundle.java
index 52f3c2f..6595548 100644
--- a/user/test/com/google/gwt/uibinder/test/client/FakeBundle.java
+++ b/user/test/com/google/gwt/uibinder/test/client/FakeBundle.java
@@ -55,7 +55,7 @@
   }
 
   public SafeUri aSafeUri() {
-    return UriUtils.fromSafeConstant(anUnsafeUri());
+    return UriUtils.fromTrustedString(anUnsafeUri());
   }
   
   public String aSelector() {