Skip to content

Commit f205803

Browse files
committed
Apply reviews
1 parent a38c8a6 commit f205803

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/test/java/org/csanchez/jenkins/plugins/kubernetes/pipeline/ContainerExecDecoratorWindowsTest.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* The MIT License
33
*
4-
* Copyright (c) 2016, Carlos Sanchez
4+
* Copyright (c) 2022, CloudBees Inc.
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal
@@ -74,9 +74,6 @@
7474
import static org.mockito.Mockito.mock;
7575
import static org.mockito.Mockito.when;
7676

77-
/**
78-
* @author Carlos Sanchez
79-
*/
8077
public class ContainerExecDecoratorWindowsTest {
8178
public static final String WINDOWS_BUILD = "10.0.17763";
8279
@Rule
@@ -184,7 +181,6 @@ public void testQuietCommandExecution() throws Exception {
184181
ByteArrayOutputStream output = new ByteArrayOutputStream();
185182
ProcReturn r = execCommandInContainer("container", null, true, output, "echo", "pid is 9999");
186183
String out = output.toString(StandardCharsets.UTF_8.name());
187-
System.out.println(out);
188184
assertFalse("Output should not contain command: " + out, PID_PATTERN.matcher(out).find());
189185
assertEquals(0, r.exitCode);
190186
assertFalse(r.proc.isAlive());

0 commit comments

Comments
 (0)