Skip to content

Commit

Permalink
[JENKINS-44453] - Fix typo noticed by @amuniz
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-nenashev committed May 23, 2017
1 parent fc7ef54 commit 5e14b5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/jvnet/hudson/test/JenkinsRule.java
Expand Up @@ -374,7 +374,7 @@ public void before() throws Throwable {
// So we just fail the test.
if (jenkins.getInitLevel() != InitMilestone.COMPLETED) {
throw new Exception("Jenkins initialization has not reached the COMPLETED initialization stage. Current state is " + jenkins.getInitLevel() +
". Likely there is and issue with the Initialization task graph (e.g. usage of @Initializer(after = InitMilestone.COMPLETED)). See JENKINS-37759 for more info");
". Likely there is an issue with the Initialization task graph (e.g. usage of @Initializer(after = InitMilestone.COMPLETED)). See JENKINS-37759 for more info");
}
} catch (Exception e) {
// if Hudson instance fails to initialize, it leaves the instance field non-empty and break all the rest of the tests, so clean that up.
Expand Down

0 comments on commit 5e14b5c

Please sign in to comment.