Rename internal OutputCapture classes
Rename the internal versions of OutputCapture to prevent accidental import. See gh-5492
This commit is contained in:
@@ -30,7 +30,7 @@ import org.junit.runners.model.Statement;
|
||||
*
|
||||
* @author Phillip Webb
|
||||
*/
|
||||
public class OutputCapture implements TestRule {
|
||||
class InternalOutputCapture implements TestRule {
|
||||
|
||||
private CaptureOutputStream captureOut;
|
||||
|
||||
@@ -43,7 +43,7 @@ import static org.assertj.core.api.Assertions.assertThat;
|
||||
public class PropertiesLauncherTests {
|
||||
|
||||
@Rule
|
||||
public OutputCapture output = new OutputCapture();
|
||||
public InternalOutputCapture output = new InternalOutputCapture();
|
||||
|
||||
@Before
|
||||
public void setup() throws IOException {
|
||||
|
||||
Reference in New Issue
Block a user