mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Oracle build fix
git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@32852 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -564,11 +564,11 @@ public class SOLRTrackingComponentTest extends TestCase
|
||||
}
|
||||
}
|
||||
|
||||
assertEquals("Number of transactions is incorrect", createdTransaction.size(), txns.size());
|
||||
assertEquals("Number of transactions is incorrect", createdTransaction.size(), matchedTransactions.size());
|
||||
|
||||
List<Long> txnIds = new ArrayList<Long>(txns.size());
|
||||
List<Long> txnIds = new ArrayList<Long>(matchedTransactions.size());
|
||||
int i = 0;
|
||||
for(Transaction txn : txns)
|
||||
for(Transaction txn : matchedTransactions)
|
||||
{
|
||||
assertEquals("Number of deletes is incorrect", deletes[i], txn.getDeletes());
|
||||
assertEquals("Number of updates is incorrect", updates[i], txn.getUpdates());
|
||||
|
Reference in New Issue
Block a user