RM-4247 Fix typo.

This commit is contained in:
Tom Page
2016-11-07 16:09:35 +00:00
parent 43b8f3eba1
commit 2e48e3207f

View File

@@ -125,8 +125,8 @@ public class BroadcastDispositionActionDefinitionUpdateActionUnitTest
NodeRef scheduleNode = new NodeRef("schedule://node/"); NodeRef scheduleNode = new NodeRef("schedule://node/");
ChildAssociationRef scheduleDefinitionRelationship = new ChildAssociationRef(null, scheduleNode, null, definitionNode); ChildAssociationRef scheduleDefinitionRelationship = new ChildAssociationRef(null, scheduleNode, null, definitionNode);
when(mockNodeService.getPrimaryParent(definitionNode)).thenReturn(scheduleDefinitionRelationship); when(mockNodeService.getPrimaryParent(definitionNode)).thenReturn(scheduleDefinitionRelationship);
ChildAssociationRef catergoryScheduleRelationship = new ChildAssociationRef(null, categoryNode, null, scheduleNode); ChildAssociationRef categoryScheduleRelationship = new ChildAssociationRef(null, categoryNode, null, scheduleNode);
when(mockNodeService.getPrimaryParent(scheduleNode)).thenReturn(catergoryScheduleRelationship); when(mockNodeService.getPrimaryParent(scheduleNode)).thenReturn(categoryScheduleRelationship);
// Set up the record/step relationship. // Set up the record/step relationship.
NodeRef recordNode = new NodeRef("record://node/"); NodeRef recordNode = new NodeRef("record://node/");
NodeRef stepNode = new NodeRef("step://node/"); NodeRef stepNode = new NodeRef("step://node/");