File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
src/test/java/org/jenkins/ci/plugins/jenkinslint/check Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change 12
12
13
13
import java .util .Collections ;
14
14
15
- import static org .junit .Assert .assertTrue ;
16
15
import static org .junit .Assert .assertFalse ;
16
+ import static org .junit .Assert .assertTrue ;
17
17
18
18
/**
19
19
* SlaveDescriptionChecker Test Case.
@@ -26,12 +26,10 @@ public class SlaveDescriptionCheckerTestCase {
26
26
@ Rule public JenkinsRule j = new JenkinsRule ();
27
27
@ Test public void testDefaultSlave () throws Exception {
28
28
Slave slave = createSlave ("default" , "" );
29
- System .out .println (slave .getNodeDescription ());
30
29
assertTrue (checker .executeCheck (slave ));
31
30
}
32
31
@ Test public void testSlaveDescription () throws Exception {
33
32
Slave slave = createSlave ("default" , "somedescription" );
34
- System .out .println (slave .getNodeDescription ());
35
33
assertFalse (checker .executeCheck (slave ));
36
34
}
37
35
You can’t perform that action at this time.
0 commit comments