Skip to content

Commit

Permalink
Fix use of term
Browse files Browse the repository at this point in the history
  • Loading branch information
slide committed Aug 19, 2020
1 parent 0e96dbd commit d0cb6f5
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public void testPreBuildMatrixBuildSendParentOnly() throws Exception {
}

@Test
public void testPreBuildMatrixBuildSendAgentssOnly() throws Exception{
public void testPreBuildMatrixBuildSendAgentsOnly() throws Exception{
addAgentToProject(0,1,2);
List<RecipientProvider> recProviders = Collections.emptyList();
publisher.setMatrixTriggerMode(MatrixTriggerMode.ONLY_CONFIGURATIONS);
Expand Down Expand Up @@ -164,11 +164,11 @@ private void addEmailType( EmailTrigger trigger ) {
}} );
}

private void addAgentToProject(int ... agentInxes ) throws IOException {
private void addAgentToProject(int ... agentInxes) throws IOException {
AxisList list = new AxisList();
List<String> values = new LinkedList<>();
for (int slaveInx : agentInxes) {
values.add(agents.get(slaveInx).getLabelString());
for (int agentInx : agentInxes) {
values.add(agents.get(agentInx).getLabelString());
}
list.add(new Axis("label",values));
project.setAxes(list);
Expand Down

0 comments on commit d0cb6f5

Please sign in to comment.