Fix test build break caused by race condition with the RequestObject->Request rename change. Patch by: bobv Review by: rjrjr git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@8843 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/user/test/com/google/gwt/requestfactory/client/RequestFactoryTest.java b/user/test/com/google/gwt/requestfactory/client/RequestFactoryTest.java index 4fdc030..c90fce3 100644 --- a/user/test/com/google/gwt/requestfactory/client/RequestFactoryTest.java +++ b/user/test/com/google/gwt/requestfactory/client/RequestFactoryTest.java
@@ -189,7 +189,7 @@ assertEquals(futureId, req.getProxyId(futureToken)); assertEquals(req.getClass(futureId), req.getClass(futureToken)); - RequestObject<SimpleBarProxy> fooReq = req.simpleBarRequest().persistAndReturnSelf( + Request<SimpleBarProxy> fooReq = req.simpleBarRequest().persistAndReturnSelf( foo); fooReq.fire(new Receiver<SimpleBarProxy>() { @Override