8235744: PIT: test/jdk/javax/swing/text/html/TestJLabelWithHTMLText.java times out in linux-x64

Reviewed-by: psadhukhan, prr
This commit is contained in:
Pankaj Bansal 2019-12-13 12:08:10 +05:30
parent a5db02db72
commit e6b381faa2

View File

@ -23,7 +23,7 @@
/**
* @test
* @bug 8230235
* @bug 8230235 8235744
* @summary Tests if JLabel with HTML text having empty img tag and
* documentBaseKey set renders properly without NPE
* @run main TestJLabelWithHTMLText
@ -41,7 +41,7 @@ public class TestJLabelWithHTMLText {
JLabel label = new JLabel();
try {
label.putClientProperty(BasicHTML.documentBaseKey,
new URL("https://www.google.com"));
new URL("http://localhost"));
} catch (MalformedURLException e) {
e.printStackTrace();
}