~verterok/+junk/ubuntuone-java-storageprotocol

« back to all changes in this revision

Viewing changes to src/test/java/com/ubuntuone/storageprotocol/request/QueryTest.java

  • Committer: Guillermo Gonzalez
  • Date: 2010-09-10 20:26:14 UTC
  • Revision ID: guillo.gonzo@gmail.com-20100910202614-0zz86c6tnweg1uvp
minor fixes to imports in tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
                request.processMessage(response);
68
68
                assertTrue(request.isFinished());
69
69
                assertFalse(request.isStarted());
70
 
                request.getDeferred().addCallback(new Callback() {
 
70
                request.getDeferred().addCallback(new Callback<Query>() {
71
71
                        
72
 
                        public Object callback(Object o) throws Exception {
 
72
                        public Object callback(Query o) throws Exception {
73
73
                                assertEquals(request, o);
74
74
                                return null;
75
75
                        }