Skip to content

Commit

Permalink
Fixed test failure in namespaced (aka packaged) org
Browse files Browse the repository at this point in the history
  • Loading branch information
afawcettffdc committed Aug 30, 2015
1 parent 98ee4da commit 30e7e9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rolluptool/src/classes/RollupServiceTest4.cls
Original file line number Diff line number Diff line change
Expand Up @@ -1034,8 +1034,8 @@ private class RollupServiceTest4 {
String relationshipField = LookupChild__c.LookupParent__c.getDescribe().getName();
String aggregateField = LookupChild__c.Color__c.getDescribe().getName();
String aggregateResultField = LookupParent__c.Colours__c.getDescribe().getName();
String condition = 'Amount__c > 1';
List<String> relationshipCriteriaFields = new List<String> { 'Amount__c', 'Name', 'Id', 'IsDeleted' };
String condition = LookupChild__c.Amount__c.getDescribe().getName() + ' > 1';
List<String> relationshipCriteriaFields = new List<String> { LookupChild__c.Amount__c.getDescribe().getName(), 'Name', 'Id', 'IsDeleted' };
String sharingMode = LREngine.SharingMode.User.name();
String fieldToOrderBy = LookupChild__c.Amount__c.getDescribe().getName();

Expand Down

0 comments on commit 30e7e9c

Please sign in to comment.