Skip to content

Commit e66e3e5

Browse files
DamonFoolJohn Jiang
authored andcommitted
8210108: sun/tools/jstatd test build failures after JDK-8210022
Backport-of: 86c476b
1 parent dd6ba08 commit e66e3e5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/jdk/sun/tools/jstatd/JstatdTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,11 +28,11 @@
2828
import java.rmi.registry.Registry;
2929
import java.util.Arrays;
3030

31-
import jdk.test.lib.process.OutputAnalyzer;
3231
import jdk.test.lib.thread.ProcessThread;
3332
import static jdk.testlibrary.Asserts.*;
3433
import jdk.testlibrary.JDKToolLauncher;
3534
import jdk.testlibrary.Utils;
35+
import jdk.testlibrary.OutputAnalyzer;
3636
import jdk.testlibrary.ProcessTools;
3737

3838
/**
@@ -325,7 +325,7 @@ public void doTest() throws Throwable {
325325
}
326326

327327
// Verify output from jstatd
328-
OutputAnalyzer output = jstatdThread.getOutput();
328+
jdk.test.lib.process.OutputAnalyzer output = jstatdThread.getOutput();
329329
assertTrue(output.getOutput().isEmpty(),
330330
"jstatd should get an empty output, got: "
331331
+ Utils.NEW_LINE + output.getOutput());

0 commit comments

Comments
 (0)