We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97a0ded commit eebebeaCopy full SHA for eebebea
jenkins-client-it-docker/src/test/java/com/offbytwo/jenkins/integration/NoExecutorStartedGetJobIT.java
@@ -80,10 +80,15 @@ public void getLastFailedBuildShouldBeBUILD_HAS_NEVER_RAN() {
80
}
81
82
@Test
83
- public void hasLastFailedBuildShouldBeTrue() {
84
- assertThat(job.hasLastFailedBuildRun()).isTrue();
+ public void hasLastBuildShouldBeTrue() {
+ assertThat(job.hasLastBuildRun()).isTrue();
85
86
-
+
87
+ @Test
88
+ public void hasLastFailedBuildShouldBeFalse() {
89
+ assertThat(job.hasLastFailedBuildRun()).isFalse();
90
+ }
91
92
93
public void getLastStableBuildShouldNotBeNull() throws IOException {
94
assertThat(job.getLastStableBuild()).isNotNull();
0 commit comments