Fix ALF-10571: Error executing transfer - Lock time out

- FTR now correctly reports its version.
ALF-10684: FTR: Insufficient hooks provided to allow developers to listen to inbound transfers
   - Initial work on this. More to do.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@31238 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Brian Remmington
2011-10-14 14:40:13 +00:00
parent 7a134c42bc
commit bf7bc0b732
10 changed files with 46 additions and 55 deletions

View File

@@ -612,9 +612,9 @@ public class TransferServiceCallbackTest extends TestCase
reportWriter.startTransferReport("UTF-8", writer);
reportWriter.writeComment("This is a comment");
reportWriter.writeChangeState("COMMITTING");
reportWriter.writeCreated(file1, file1, folder1, new Path());
reportWriter.writeDeleted(file3, file3, new Path());
reportWriter.writeMoved(file2, file2, new Path(), folder1, new Path());
reportWriter.writeCreated(file1, file1, folder1, "");
reportWriter.writeDeleted(file3, file3, "");
reportWriter.writeMoved(file2, file2, "", folder1, "");
reportWriter.endTransferReport();
return null;
}