Skip to content

Commit a8951c0

Browse files
committed
Remove system output
1 parent 48c10d8 commit a8951c0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/test/java/org/jenkins/ci/plugins/jenkinslint/check/SlaveDescriptionCheckerTestCase.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
import java.util.Collections;
1414

15-
import static org.junit.Assert.assertTrue;
1615
import static org.junit.Assert.assertFalse;
16+
import static org.junit.Assert.assertTrue;
1717

1818
/**
1919
* SlaveDescriptionChecker Test Case.
@@ -26,12 +26,10 @@ public class SlaveDescriptionCheckerTestCase {
2626
@Rule public JenkinsRule j = new JenkinsRule();
2727
@Test public void testDefaultSlave() throws Exception {
2828
Slave slave = createSlave("default", "");
29-
System.out.println (slave.getNodeDescription());
3029
assertTrue(checker.executeCheck(slave));
3130
}
3231
@Test public void testSlaveDescription() throws Exception {
3332
Slave slave = createSlave("default", "somedescription");
34-
System.out.println (slave.getNodeDescription());
3533
assertFalse(checker.executeCheck(slave));
3634
}
3735

0 commit comments

Comments
 (0)