Skip to content

Commit

Permalink
[JENKINS-22187] wrong Action name in tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
ikedam committed Oct 30, 2014
1 parent b598099 commit b8813b5
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -487,7 +487,7 @@ public void testMiltipleActions() throws Exception {

MatrixBuild build = p.scheduleBuild2(0).get();
assertBuildStatusSuccess(build);
assertEquals(2, build.getActions(AggregationRecorder.RecorderAction.class).size());
assertEquals(2, build.getActions(AggregationRecorder.AggregatorAction.class).size());
}


Expand All @@ -512,6 +512,6 @@ public void testMixedWithNonaggregateble() throws Exception {

MatrixBuild build = p.scheduleBuild2(0).get();
assertBuildStatusSuccess(build);
assertNotNull(build.getAction(AggregationRecorder.RecorderAction.class));
assertNotNull(build.getAction(AggregationRecorder.AggregatorAction.class));
}
}

0 comments on commit b8813b5

Please sign in to comment.